From 093decfbeb61e84a079915f9a33a5bec619c009b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 12 Jul 2025 17:07:28 +0200 Subject: [PATCH] codespell.sh: fixup file exclusions --- .github/scripts/codespell.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/scripts/codespell.sh b/.github/scripts/codespell.sh index 8d15859518..86ac270230 100755 --- a/.github/scripts/codespell.sh +++ b/.github/scripts/codespell.sh @@ -11,13 +11,13 @@ cd "$(dirname "${0}")"/../.. codespell \ --skip '*/spellcheck.words' \ --skip '*/typos.toml' \ - --skip '*/THANKS' \ - --skip '*/mk-ca-bundle.pl' \ - --skip '*/wcurl' \ - --skip '*/tool_hugehelp.c' \ + --skip 'docs/THANKS' \ + --skip 'scripts/mk-ca-bundle.pl' \ + --skip 'scripts/wcurl' \ + --skip 'src/tool_hugehelp.c' \ --skip 'packages/*' \ --skip 'winbuild/*' \ - --skip '*/test*' \ + --skip 'tests/data/test*' \ --ignore-regex '.*spellchecker:disable-line' \ --ignore-words '.github/scripts/codespell-ignore.txt' \ $(git ls-files)