Browse Source

🔄 synced file(s) with dgibbs64/repo-sync (#21)

* 🔄 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'

* 🔄 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'
pull/22/head
Daniel Gibbs 2 years ago
committed by GitHub
parent
commit
4b8788be1d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .editorconfig
  2. 12
      .github/FUNDING.yml
  3. 8
      .github/dependabot.yml
  4. 8
      .github/workflows/update-copyright-years-in-license-file.yml
  5. 33
      .gitignore
  6. 6
      .vscode/extensions.json
  7. 4
      .yamllint.yml

2
.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

12
.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

8
.github/dependabot.yml

@ -1,15 +1,9 @@
# Set update schedule for GitHub Actions
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"
- package-ecosystem: "docker"
# Look for a `Dockerfile` in the `root` directory
directory: "/"
# Check for updates once a week
schedule:
interval: "weekly"

8
.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

33
.gitignore

@ -1,24 +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
/node_modules
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
.history/
*.vsix

6
.vscode/extensions.json

@ -0,0 +1,6 @@
{
"recommendations": [
"editorconfig.editorconfig",
"esbenp.prettier-vscode"
]
}

4
.yamllint.yml

@ -6,6 +6,4 @@ rules:
comments: disable
ignore: |
.tox/
.cache/
.github/workflows
.github

Loading…
Cancel
Save