summaryrefslogtreecommitdiffstats
path: root/misc/scripts/codespell.sh
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-03-15 10:18:33 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-03-15 10:18:33 +0100
commit82bc10258191d4efe64be6239ae86eed70b49e5a (patch)
tree83e572c708492e195958edcc5af2e9f09ee1c0dc /misc/scripts/codespell.sh
parent1632322ce029aaf0b501f4966f1544223d650179 (diff)
downloadredot-cpp-82bc10258191d4efe64be6239ae86eed70b49e5a.tar.gz
Sync `misc/` scripts and hooks with upstream Godot
Diffstat (limited to 'misc/scripts/codespell.sh')
-rw-r--r--misc/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 100644
index 0000000..2822c64
--- /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/scripts/codespell.sh"
+IGNORE_LIST="ba,childs,curvelinear,expct,fave,findn,gird,inout,lod,nd,numer,ois,ro,statics,te,varn"
+
+codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"