From e66bd5daf87b820b86cc1ac9847799ae05720349 Mon Sep 17 00:00:00 2001 From: Rylie Pavlik Date: Tue, 20 Aug 2024 12:28:15 -0500 Subject: [PATCH] scripts: Update codespell ignore regex Part-of: --- scripts/codespell-project.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/codespell-project.sh b/scripts/codespell-project.sh index 63c21ae33..84420b0af 100755 --- a/scripts/codespell-project.sh +++ b/scripts/codespell-project.sh @@ -20,7 +20,7 @@ set -e # Comma-delimited list of words for codespell to not try to correct. IGNORE_WORDS_LIST="ang,sinc,sie,stoll,wil,daa,localy,od,ser,unknwn,parm,inflight,marge,devault,errorprone,childs" -IGNORE_REGEX="\b(pEvent|inout|Kimera)\b" +IGNORE_REGEX="\b(pEvent|inout|Kimera|InstallIn)\b" SCRIPTDIR=$(cd "$(dirname "$0")" && pwd)