From 1189276af2dc38796f02d3b7f71c46409cb2d02b Mon Sep 17 00:00:00 2001 From: Per Tillisch Date: Tue, 1 Jul 2025 01:38:54 -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. One of the identifiers "nextED" used in the codebase happens to match against the misspelled word dictionary entry for "nested", which causes 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 8b2c987..0b0cb58 100644 --- a/.codespellrc +++ b/.codespellrc @@ -2,7 +2,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 = freeed,unstall, +ignore-words-list = freeed,nexted,unstall, skip = ./.git,./.licenses,__pycache__,node_modules,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock builtin = clear,informal,en-GB_to_en-US check-filenames =