Skip to content

Commit ce1f76e

Browse files
authored
Fix spell check false positive by ignoring word
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 a false misspelled word detection. Since the code that produced the detection is correct and intended, the false positive is resolved by configuring codespell to ignore the problematic word.
1 parent 331cdd9 commit ce1f76e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.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 = hel
4+
ignore-words-list = hel,shiftin
55
check-filenames =
66
check-hidden =
77
skip = ./.git,./test/external

0 commit comments

Comments
 (0)