This repository was archived by the owner on Aug 18, 2020. It is now read-only.
Commit 1e7b72c
Check for commonly misspelled words during the CI build
codespell is a blacklist-based spell checker. This approach is more appropriate for a CI build because it results in far less false positives than would traditional whitelist-based spell checking, with the disadvantage of having more false negatives. So it won't catch all the typos, but it also won't be spuriously breaking every other build.
When false positives do occur, they can be resolved by adding the problematic word to extras/codespell-ignore-words-list.txt
I configured codespell to ignore the contents of src/lib and test/external because these appear to contain external projects and spell checking of those files would be better done in their own repositories.1 parent 21d267e commit 1e7b72c
2 files changed
+12
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
49 | 61 | | |
50 | 62 | | |
51 | 63 | | |
| |||
Whitespace-only changes.
0 commit comments