aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/check_whitespace.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check_whitespace.sh')
-rwxr-xr-xscripts/check_whitespace.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/check_whitespace.sh b/scripts/check_whitespace.sh
index bd136d86..4fe2146e 100755
--- a/scripts/check_whitespace.sh
+++ b/scripts/check_whitespace.sh
@@ -9,7 +9,10 @@ cd ${SRCDIR}
WS_DIRS="config/ docs/ klippy/ scripts/ src/ test/"
WS_EXCLUDE="-path scripts/kconfig -prune"
WS_FILES="-o -iname '*.[csh]' -o -name '*.py' -o -name '*.sh'"
-WS_FILES="$WS_FILES -o -name '*.md' -o -name '*.cfg'"
+WS_FILES="$WS_FILES -o -name '*.md' -o -name '*.cfg' -o -name '*.txt'"
+WS_FILES="$WS_FILES -o -name '*.html' -o -name '*.css'"
+WS_FILES="$WS_FILES -o -name '*.yaml' -o -name '*.yml'"
+WS_FILES="$WS_FILES -o -name '*.css' -o -name '*.yaml' -o -name '*.yml'"
WS_FILES="$WS_FILES -o -name '*.test' -o -name '*.config'"
WS_FILES="$WS_FILES -o -iname '*.lds' -o -iname 'Makefile' -o -iname 'Kconfig'"
eval find $WS_DIRS $WS_EXCLUDE $WS_FILES | xargs ./scripts/check_whitespace.py