pdfdraw/run-stylelint.sh
2020-11-25 15:38:38 +01:00

11 lines
250 B
Bash
Executable file

#!/bin/sh
set -e
STYLELINT=$(which stylelint || true)
if [ -z "$STYLELINT" ]; then
echo "Can't find command \"stylelint\" in $PATH"
exit 1
fi
echo Checking stylesheets with $STYLELINT ...
find . -name "*.*css" -print0 | xargs -0 $STYLELINT