mirror of
https://github.com/godotengine/godot.git
synced 2025-01-30 21:33:18 +08:00
a647fb3e62
Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
6 lines
302 B
Bash
6 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}"
|