From d9e98806bcd24704c992e7d4bd36826e58c1a083 Mon Sep 17 00:00:00 2001 From: geisserml Date: Sat, 1 Feb 2025 02:05:01 +0100 Subject: [PATCH] codespell: skip RELEASE.md because we don't control its contents --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 53248dc17..1c64868df 100755 --- a/run +++ b/run @@ -11,7 +11,7 @@ args="${@:2}" function check() { autoflake src/ setupsrc/ tests/ setup.py docs/source/conf.py --recursive --remove-all-unused-imports --ignore-pass-statements --ignore-init-module-imports - codespell --skip="./docs/build,./tests/resources,./tests/output,./data,./sourcebuild,./dist,./.git,__pycache__,.mypy_cache,.hypothesis" -L "tabe,splitted,fith,flate" + codespell --skip="./docs/build,./tests/resources,./tests/output,./data,./sourcebuild,./dist,./RELEASE.md,./.git,__pycache__,.mypy_cache,.hypothesis" -L "tabe,splitted,fith,flate" reuse lint }