initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
32
libs/wxWidgets-3.3.1/misc/scripts/spellcheck
Executable file
32
libs/wxWidgets-3.3.1/misc/scripts/spellcheck
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
CODESPELL=${CODESPELL-codespell}
|
||||
|
||||
# Make sure we run codespell from the top wx directory.
|
||||
cd `dirname "$0"`/../..
|
||||
|
||||
if ! command -v $CODESPELL > /dev/null; then
|
||||
echo "ERROR: codespell not available." >&2
|
||||
exit 127
|
||||
fi
|
||||
|
||||
$CODESPELL \
|
||||
-I misc/suppressions/codespell-words \
|
||||
-x misc/suppressions/codespell-lines \
|
||||
-S 'build/cmake/modules/cotire.cmake,docs/changes*.txt,*.png,*.ico,*.bmp,*.cur,docs/doxygen/images,docs/doxygen/mainpages/copyright.h,docs/doxygen/doxygen-awesome-css,include/wx/private/lang_*.h' \
|
||||
README.md docs include interface
|
||||
|
||||
rc=$?
|
||||
|
||||
if [ $rc != 0 ]; then
|
||||
cat <<EOF
|
||||
|
||||
=================================== ERROR ===================================
|
||||
Spell check failed, please correct the spelling mistakes at the locations
|
||||
listed above. If any of the reported mistakes are false positives, please add
|
||||
the lines provoking them to misc/suppressions/codespell-lines file or, if
|
||||
there are many occurrences of the same word, add this word to codespell-words
|
||||
file in the same directory.
|
||||
EOF
|
||||
>& 2
|
||||
exit $rc
|
||||
fi
|
||||
Reference in New Issue
Block a user