From 38c6076713a269a9d47e9d8e9a38ec3545ebb9f9 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 4 May 2022 18:19:51 -0500 Subject: [PATCH] scripts: Teach codespell not to complain about the Windows Implementation Library WIL. --- 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 9e6375078..c9cd13f3d 100755 --- a/scripts/codespell-project.sh +++ b/scripts/codespell-project.sh @@ -19,7 +19,7 @@ set -e # Comma-delimited list of words for codespell to not try to correct. -IGNORE_WORDS_LIST="ang,sinc,sie,inout,stoll" +IGNORE_WORDS_LIST="ang,sinc,sie,inout,stoll,wil" SCRIPTDIR=$(cd $(dirname $0) && pwd)