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.
typos
1 parent 6aab564 commit 619c138Copy full SHA for 619c138
.github/workflows/typos.yml
@@ -0,0 +1,19 @@
1
+name: Content typos tests
2
+
3
+on:
4
+ push:
5
+ branches: ['main']
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Check spelling of markdown and JSON files in content directory
17
+ uses: crate-ci/typos@master
18
+ with:
19
+ files: ./content/**/*.{md,json}
typos.toml
@@ -0,0 +1,10 @@
+[default]
+extend-ignore-re = [
+ # don't spellcheck the values of these JSON keys
+ '"(name|videoId|url|instagram)": ".*"',
+ # false positives
+ 'Jason Sigal',
+ 'Thi\.ng',
+ 'Shure Lavalier',
+]
0 commit comments