Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
15 changes: 15 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -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
26 changes: 26 additions & 0 deletions typos.toml
Original file line number Diff line number Diff line change
@@ -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
# ]