11 lines
250 B
Bash
Executable file
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
|