summaryrefslogtreecommitdiff
path: root/misc/scripts/codespell.sh
diff options
context:
space:
mode:
Diffstat (limited to 'misc/scripts/codespell.sh')
-rwxr-xr-xmisc/scripts/codespell.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/misc/scripts/codespell.sh b/misc/scripts/codespell.sh
new file mode 100755
index 0000000000..f99c5d22b2
--- /dev/null
+++ b/misc/scripts/codespell.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+SKIP_LIST="./thirdparty,*.gen.*,*.po,*.pot,package-lock.json,./core/string/locales.h,./DONORS.md,./misc/dist/linux/org.godotengine.Godot.desktop,./misc/scripts/codespell.sh"
+IGNORE_LIST="ba,childs,complies,curvelinear,expct,fave,findn,gird,inout,lod,nd,numer,ois,ro,statics,te,varius,varn"
+
+codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"