diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 22:36:31 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 22:36:31 +0100 |
commit | efefd9b198d09149e38423f4929207e2882f631e (patch) | |
tree | ee6022184aa833100ab357290114fe7f921e6299 /misc | |
parent | b509d1665283133902636d8d83b64a7a24b303b5 (diff) | |
parent | f7c611ab71d292d64a6d4db8db8e36aaf0e2330b (diff) |
Merge pull request #68120 from akien-mga/style-doc-cleanup
Style: Misc docs and comment style and language fixes
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/scripts/codespell.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/scripts/codespell.sh b/misc/scripts/codespell.sh index 4cc01ec637..c00d897666 100755 --- a/misc/scripts/codespell.sh +++ b/misc/scripts/codespell.sh @@ -1,5 +1,5 @@ #!/bin/sh -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" +SKIP_LIST="./.git,./bin,./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="alo,ba,childs,complies,curvelinear,doubleclick,expct,fave,findn,gird,gud,inout,lod,nd,numer,ois,readded,ro,sav,statics,te,varius,varn,wan" codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}" |