Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-09 13:10:55 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-09 13:10:55 +0300
commit08c2d70e50e8ba3c214f2ba1a1e871532b69b6d6 (patch)
treee5f1ae78d0e08a75310d70bc3b51c0864838085b /run-stylelint.sh
parentaff9cb68e6df817297813d3d721bdc1249d0b4e4 (diff)
Only check (s)css files in css/
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'run-stylelint.sh')
-rwxr-xr-xrun-stylelint.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/run-stylelint.sh b/run-stylelint.sh
index 974ef67d1..5fbea51da 100755
--- a/run-stylelint.sh
+++ b/run-stylelint.sh
@@ -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