diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..1624dfa --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,15 @@ +name: Check for typos + +on: + [push, pull_request, workflow_dispatch] + +jobs: + check-typos: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - run: git fetch origin ${{ github.base_ref }} + + - name: Run spellcheck + uses: crate-ci/typos@v1.34.0 diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..6fa64eb --- /dev/null +++ b/typos.toml @@ -0,0 +1,26 @@ +# typos.toml - configuration for the typos spellchecker +# More info: https://github.com/crate-ci/typos +# Also: https://cocalc.com/github/bevyengine/bevy/blob/main/typos.toml + +[default] +locale = "en-us" +extend-ignore-re = [ + "(?i)wizzard" +] + +# [default.extend-words] + +# [default.extend-identifiers] + +# [default.extend-ignore-re] # Uncomment to ignore words via regex patterns +# "\\bNDKs\\b", # e.g., acronym or brand names + +# [files] +# ignore-hidden = false # Include hidden files + +# extend-exclude = [ +# "*.pbxproj", # Ignore Xcode project metadata +# "*.patch", # Ignore patch files +# "*.bin", # Ignore binary files +# ".git/", # Ignore Git metadata +# ]