Only check (s)css files in css/

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-10-09 12:10:55 +02:00
Родитель aff9cb68e6
Коммит 08c2d70e50
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -8,4 +8,5 @@ if [ -z "$STYLELINT" ]; then
fi
echo Checking stylesheets with $STYLELINT ...
find -name "*.css" -print0 | xargs -0 $STYLELINT
find css/ -name "*.css" -print0 | xargs -0 $STYLELINT
find css/ -name "*.scss" -print0 | xargs -0 $STYLELINT