File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 2424 - run : cargo fmt --check --all
2525 - run : cargo test --package front_matter
2626
27+ spelling :
28+ runs-on : ubuntu-latest
29+ steps :
30+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
31+ - uses : crate-ci/typos@7436548694def3314aacd93ed06c721b1f91ea04 # v1.37.2
32+
2733 build :
2834 runs-on : ubuntu-latest
2935 steps :
Original file line number Diff line number Diff line change 1+ # # See also docs: https://github.com/crate-ci/typos/blob/v1.28.2/docs/reference.md
2+
3+ [files ]
4+ extend-exclude = [
5+ ]
6+
7+ [default .extend-words ]
8+ # # Add exclusions here, lines should be like `x = "x"`, where `x` is excluded word.
9+ moreso = " moreso"
10+
11+ [default .extend-identifiers ]
12+ # # Add exclusions here, lines should be like `x = "x"`, where `x` is excluded word.
13+ # Package name
14+ flate2 = " flate2"
15+ # People's names
16+ Schol = " Schol"
17+ Theis = " Theis"
18+ Cornel = " Cornel"
19+ Signes = " Signes"
20+ Wirth = " Wirth"
21+ fliter = " fliter"
22+ # User names
23+ durin42 = " durin42"
24+ # Don't break file links
25+ platforms_targetted = " platforms_targetted"
26+
27+ [default ]
28+ extend-ignore-words-re = [
29+ # words with length <= 4 chars is likely noise
30+ ' ^[a-zA-Z]{1,4}$' ,
31+ ]
32+
33+ extend-ignore-re = [
34+ ' 1\.53\.0-prelease.md' , # don't break links
35+ ]
36+
37+ [type .svg ]
38+ check-file = false # not likely to have relevant typos but false positives
39+
40+ [type .minified ]
41+ check-file = false # generated content
You can’t perform that action at this time.
0 commit comments