2022-02-10 11:00:11 +00:00
|
|
|
#!/bin/sh
|
2023-02-01 09:49:05 +00:00
|
|
|
SKIP_LIST="./.*,./**/.*,./bin,./thirdparty,*.desktop,*.gen.*,*.po,*.pot,*.rc,./AUTHORS.md,./COPYRIGHT.txt,./DONORS.md,"
|
2023-02-28 12:38:01 +00:00
|
|
|
SKIP_LIST+="./core/input/gamecontrollerdb.txt,./core/string/locales.h,./editor/renames_map_3_to_4.cpp,./misc/scripts/codespell.sh,"
|
2023-02-01 07:45:41 +00:00
|
|
|
SKIP_LIST+="./platform/android/java/lib/src/com,./platform/web/node_modules,./platform/web/package-lock.json,"
|
|
|
|
|
2024-02-07 10:09:28 +00:00
|
|
|
IGNORE_LIST="breaked,cancelled,curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,mis,nd,numer,ot,requestor,te,vai"
|
2022-02-10 11:00:11 +00:00
|
|
|
|
2023-01-21 11:25:29 +00:00
|
|
|
codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}" --builtin "clear,rare,en-GB_to_en-US"
|