diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 00000000..661c03d7 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,16 @@ +name: Typos + +on: + workflow_dispatch: + push: + branches: [src] + pull_request: + branches: [src] + +jobs: + typos: + name: Check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: crate-ci/typos@v1.34.0 diff --git a/.typos.toml b/.typos.toml new file mode 100644 index 00000000..e927f6eb --- /dev/null +++ b/.typos.toml @@ -0,0 +1,14 @@ +[default] +extend-ignore-re = [ + "JodChild", + "JodGroupChild", + "Lukas Wirth", + "\\*\\*S\\*\\*tructural \\*\\*S\\*\\*earch \\*\\*R\\*\\*eplace", +] + +[files] +extend-exclude = [ + "css/*.min.css", + "css/*.css.map", + "fonts/*", +]