mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
6 lines
322 B
Bash
6 lines
322 B
Bash
#!/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,doubleclick,expct,fave,findn,gird,inout,leapyear,lod,nd,numer,ois,readded,ro,statics,te,varn"
|
|
|
|
codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"
|