From ce1f76e040a9018bd3f492ca91bb778b346b0a05 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 28 May 2024 23:13:15 -0700 Subject: [PATCH] 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. --- .codespellrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 8d12eef4..4da64a41 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,7 +1,7 @@ # See: https://github.com/codespell-project/codespell#using-a-config-file [codespell] # In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here: -ignore-words-list = hel +ignore-words-list = hel,shiftin check-filenames = check-hidden = skip = ./.git,./test/external