We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee9d20c commit 1ccfa6bCopy full SHA for 1ccfa6b
.github/workflows/typo-check.yml
@@ -0,0 +1,19 @@
1
+name: Check for typos
2
+
3
+on:
4
+ merge_group:
5
+ pull_request:
6
+ push:
7
+ branches:
8
+ - main
9
+ workflow_dispatch:
10
11
+jobs:
12
+ check-typos:
13
+ name: "Spell-check repository source"
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
+ - name: Run spell-check
19
+ uses: crate-ci/typos@master
_typos.toml
@@ -0,0 +1,2 @@
+[default]
+extend-ignore-re = ["(?Rm)^.*(#|//)\\s*spellchecker:disable-line$"]
0 commit comments