diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-16 08:45:35 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-16 08:45:35 +0200 |
commit | 6fb391bc2366cf51780f5bb6eaa199d5b63b9ec1 (patch) | |
tree | 752b2ca247f087920723b70a01d3b3ae5d471474 /misc/scripts | |
parent | c0d8d91b15597209a1ca865c6ff4f84f06f7de86 (diff) | |
download | redot-engine-6fb391bc2366cf51780f5bb6eaa199d5b63b9ec1.tar.gz |
Fix various typos with codespell
And ignore some false positives introduced by recent versions of codespell.
Diffstat (limited to 'misc/scripts')
-rwxr-xr-x | misc/scripts/codespell.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/scripts/codespell.sh b/misc/scripts/codespell.sh index d15b6593f7..a55a39bf99 100755 --- a/misc/scripts/codespell.sh +++ b/misc/scripts/codespell.sh @@ -3,6 +3,6 @@ SKIP_LIST="./.*,./**/.*,./bin,./thirdparty,*.desktop,*.gen.*,*.po,*.pot,*.rc,./A SKIP_LIST+="./core/input/gamecontrollerdb.txt,./core/string/locales.h,./editor/renames_map_3_to_4.cpp,./misc/scripts/codespell.sh," SKIP_LIST+="./platform/android/java/lib/src/com,./platform/web/node_modules,./platform/web/package-lock.json," -IGNORE_LIST="curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,nd,numer,ot,te,vai" +IGNORE_LIST="curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,mis,nd,numer,ot,requestor,te,vai" codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}" --builtin "clear,rare,en-GB_to_en-US" |