Files
engine/misc/scripts/codespell.sh
T

6 lines
357 B
Bash
Raw Normal View History

2022-02-10 12:00:11 +01:00
#!/bin/sh
2022-05-23 21:32:19 +02:00
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"
2022-02-10 12:00:11 +01:00
codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"