From 4b2ebd86489cc88ad1fc317d25120481d682c6b3 Mon Sep 17 00:00:00 2001 From: utzcoz Date: Sat, 17 Jun 2023 11:21:53 +0800 Subject: [PATCH] script: Ignore Kimera for codespell [NFC] Signed-off-by: utzcoz --- 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 f3c358236..b1e11a314 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" -IGNORE_REGEX="\b(pEvent|inout)\b" +IGNORE_REGEX="\b(pEvent|inout|Kimera)\b" SCRIPTDIR=$(cd "$(dirname "$0")" && pwd)