mirror of
https://github.com/godotengine/godot
synced 2024-11-02 12:55:22 +00:00
a647fb3e62
Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
5 lines
302 B
Bash
5 lines
302 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,complies,curvelinear,expct,fave,findn,gird,inout,lod,nd,numer,ois,ro,statics,te,varn"
|
|
|
|
codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"
|