summaryrefslogtreecommitdiffstats
path: root/misc/scripts
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-07 11:09:28 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-07 11:09:34 +0100
commit7223c5b54a7958fe8f8176bafe5ea415f0c514a6 (patch)
tree356bb60754ce9a90d84805581489a896b7e8f939 /misc/scripts
parent08eaeff6402b92d3df4268321ee1ceea8f2bfd5a (diff)
downloadredot-engine-7223c5b54a7958fe8f8176bafe5ea415f0c514a6.tar.gz
Fix various typos with codespell
Using 2.2.7.dev115+g0eb441d6. Had to add `cancelled` to the ignore list, as it's a Wayland signal which we're handling in our code, so we don't want codespell to fix that "typo". Also includes the typo fix from #87927. Co-authored-by: Divyanshu Shekhar <61140213+divshekhar@users.noreply.github.com>
Diffstat (limited to 'misc/scripts')
-rwxr-xr-xmisc/scripts/codespell.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/scripts/codespell.sh b/misc/scripts/codespell.sh
index 2de440679f..7dad25fa23 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="breaked,curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,mis,nd,numer,ot,requestor,te,vai"
+IGNORE_LIST="breaked,cancelled,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"