Skip to content

Commit bd473a8

Browse files
authored
Fix spell check false positives by ignoring words
The codespell spellchecker tool is used to automatically detect commonly misspelled words in the files of this project. The misspelled words dictionary was expanded in the latest release of codespell. Some of the text in the project codebase happens to match against newly added entries, which caused codespell to produce false misspelled word detections. Since the code that produced the detections is correct and intended, the false positives are resolved by configuring codespell to ignore the problematic words.
1 parent 6309212 commit bd473a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See: https://github.com/codespell-project/codespell#using-a-config-file
22
[codespell]
33
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
4-
ignore-words-list = clen,hart,pullrequest
4+
ignore-words-list = clearin,clen,hart,pullrequest,shiftin,waitin
55
builtin = clear
66
check-filenames =
77
check-hidden =

0 commit comments

Comments
 (0)