From f2f55859f571fd7feded046f5dc8c9ac267af499 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 27 Jun 2023 01:42:01 -0700 Subject: [PATCH] Adjust spell check tool configuration to avoid false positive The repository's CI system includes a check for commonly misspelled words. The latest version of the codespell tool dependency used for this spell check is always used. This means that the results of the spell check can change as new versions of the tool are released. The recent codespell release introduced a false positive result. This is corrected by adding the word to the ignore list in the codespell configuration file. --- .codespellrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 101edae..33d69d0 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 = , +ignore-words-list = mis check-filenames = check-hidden = skip = ./.git