From 7b5b65ded6125a257bb3ac8355bb589e2c8ef15b Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 15 Jan 2022 00:09:59 -0800 Subject: [PATCH] Configure spell checker to fix false positive The identifier `leapYears` was being detected by the spell checker tool as a misspelling of "leap years". The false positive is resolved by adding `leapyears` to the ignore list in the `.codespellrc` configuration file. --- .codespellrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 101edae..3372dc8 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 = leapyears check-filenames = check-hidden = skip = ./.git