File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,11 +20,10 @@ if ! cargo fmt --all -- --check; then
2020fi
2121
2222# Typo check
23- # TODO(template) enable if sensible
24- # if ! typos; then
25- # echo "❌ Spelling mistakes found (run 'typos --write-changes')"
26- # exit 4
27- # fi
23+ if ! typos; then
24+ echo " ❌ Spelling mistakes found (run 'typos --write-changes')"
25+ exit 4
26+ fi
2827
2928# Linting
3029if ! cargo clippy --all-targets --all-features -- -D warnings; then
Original file line number Diff line number Diff line change 1919 - name : Run Clippy
2020 run : cargo clippy --all-targets --all-features
2121
22- # TODO(template) enable if sensible
23- # - name: Check typos
24- # uses: crate-ci/typos@master
22+ - name : Check typos
23+ uses : crate-ci/typos@master
Original file line number Diff line number Diff line change 1+ [default ]
2+ extend-ignore-re = [
3+ " 0x[0-9a-fA-F]+" , # Hexadecimal numbers
4+ ]
5+
You can’t perform that action at this time.
0 commit comments