Skip to content

Commit fe6764e

Browse files
authored
πŸ”„ synced file(s) with dgibbs64/repo-sync (#17)
* πŸ”„ created local '.github/FUNDING.yml' from remote 'general/.github/FUNDING.yml' * πŸ”„ synced local '.github/dependabot.yml' with remote 'general/.github/dependabot.yml' * πŸ”„ synced local '.github/workflows/update-copyright-years-in-license-file.yml' with remote 'general/.github/workflows/update-copyright-years-in-license-file.yml' * πŸ”„ synced local '.yamllint.yml' with remote 'docker/.yamllint.yml' * πŸ”„ created local '.prettierrc.json' from remote 'docker/.prettierrc.json' * πŸ”„ synced local '.editorconfig' with remote 'docker/.editorconfig' * πŸ”„ synced local '.gitignore' with remote 'docker/.gitignore' * πŸ”„ created local '.vscode/extensions.json' from remote 'docker/.vscode/extensions.json'
1 parent 7283818 commit fe6764e

8 files changed

+38
-32
lines changed

β€Ž.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs.
2-
# Atom: Please assure your Atom's config setting Tab Type is set to auto, otherwise Atom-EditorConfig may not work as expected. Also disable whitespace package.
32
# http://editorconfig.org/
43

54
root = true
@@ -24,3 +23,4 @@ indent_size = 2
2423
[*.{.sh}]
2524
indent_style = tab
2625
indent_size = 4
26+

β€Ž.github/FUNDING.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: dgibbs64 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: dgibbs # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with a single custom sponsorship URL

β€Ž.github/dependabot.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Set update schedule for GitHub Actions
2+
---
23
version: 2
34
updates:
45
- package-ecosystem: "github-actions"
56
directory: "/"
67
schedule:
78
# Check for updates to GitHub Actions every weekday
8-
interval: "daily"
9+
interval: "weekly"

β€Ž.github/workflows/update-copyright-years-in-license-file.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
21
name: Update copyright year(s) in license file
3-
42
on:
53
workflow_dispatch:
64
schedule:
@@ -10,10 +8,12 @@ jobs:
108
update-license-year:
119
runs-on: ubuntu-latest
1210
steps:
13-
- uses: actions/checkout@v3
11+
- name: Checkout
12+
uses: actions/checkout@v3
1413
with:
1514
fetch-depth: 0
16-
- uses: FantasticFiasco/action-update-license-year@v3
15+
- name: Action Update License Year
16+
uses: FantasticFiasco/action-update-license-year@v3
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
path: LICENSE.md

β€Ž.gitignore

+9-23
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
1-
*~
2-
.vagrant*
3-
bin
4-
docker/docker
5-
.*.swp
6-
a.out
7-
*.orig
8-
build_src
9-
.flymake*
10-
.idea
11-
.DS_Store
12-
docs/_build
13-
docs/_static
14-
docs/_templates
15-
.gopath/
16-
.dotcloud
17-
*.test
18-
bundles/
19-
.hg/
20-
.git/
21-
vendor/pkg/
22-
pyenv
23-
Vagrantfile
1+
# Visual Studio Code
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
!.vscode/*.code-snippets
8+
.history/
9+
*.vsix

β€Ž.prettierrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"plugins": ["prettier-plugin-sh"]
3+
}

β€Ž.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"editorconfig.editorconfig",
4+
"esbenp.prettier-vscode"
5+
]
6+
}

β€Ž.yamllint.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ rules:
66
comments: disable
77

88
ignore: |
9-
.tox/
10-
.cache/
11-
.github/workflows
9+
.github

0 commit comments

Comments
Β (0)