From 4fa8006223d4e0af1465574c584f88ad63f8f05e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Jun 2023 18:56:03 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20file(s)=20with=20dgibbs?= =?UTF-8?q?64/repo-sync=20(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🔄 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' --- .editorconfig | 2 +- .github/FUNDING.yml | 12 +++++++ .github/dependabot.yml | 9 ++---- ...update-copyright-years-in-license-file.yml | 8 ++--- .gitignore | 32 ++++++------------- .prettierrc.json | 3 ++ .vscode/extensions.json | 6 ++++ .yamllint.yml | 2 +- 8 files changed, 38 insertions(+), 36 deletions(-) create mode 100644 .github/FUNDING.yml create mode 100644 .prettierrc.json create mode 100644 .vscode/extensions.json diff --git a/.editorconfig b/.editorconfig index f83324e..4815e84 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,4 @@ # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. -# 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. # http://editorconfig.org/ root = true @@ -24,3 +23,4 @@ indent_size = 2 [*.{.sh}] indent_style = tab indent_size = 4 + diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..33eccef --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: dgibbs64 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: dgibbs # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with a single custom sponsorship URL \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9c2831b..e4f1a3c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,14 +1,9 @@ # Set update schedule for GitHub Actions +--- version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" - - - package-ecosystem: "docker" - # Look for a `Dockerfile` in the `root` directory - directory: "/" - # Check for updates once a week - schedule: + # Check for updates to GitHub Actions every weekday interval: "weekly" diff --git a/.github/workflows/update-copyright-years-in-license-file.yml b/.github/workflows/update-copyright-years-in-license-file.yml index 162a279..d90ba4a 100644 --- a/.github/workflows/update-copyright-years-in-license-file.yml +++ b/.github/workflows/update-copyright-years-in-license-file.yml @@ -1,6 +1,4 @@ ---- name: Update copyright year(s) in license file - on: workflow_dispatch: schedule: @@ -10,10 +8,12 @@ jobs: update-license-year: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: FantasticFiasco/action-update-license-year@v3 + - name: Action Update License Year + uses: FantasticFiasco/action-update-license-year@v3 with: token: ${{ secrets.GITHUB_TOKEN }} path: LICENSE.md diff --git a/.gitignore b/.gitignore index a2dd3b2..d63b626 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,9 @@ -*~ -.vagrant* -bin -docker/docker -.*.swp -a.out -*.orig -build_src -.flymake* -.idea -.DS_Store -docs/_build -docs/_static -docs/_templates -.gopath/ -.dotcloud -*.test -bundles/ -.hg/ -.git/ -vendor/pkg/ -pyenv -Vagrantfile \ No newline at end of file +# Visual Studio Code +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets +.history/ +*.vsix diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..02d542d --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-sh"] +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..1b191c0 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "editorconfig.editorconfig", + "esbenp.prettier-vscode" + ] +} diff --git a/.yamllint.yml b/.yamllint.yml index e9b3b02..c630509 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -6,4 +6,4 @@ rules: comments: disable ignore: | - .github/workflows + .github