about summary refs log tree commit diff
path: root/package.json
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2019-06-07 01:51:46 +0900
committermultiple creatures <dev@multiple-creature.party>2019-11-19 16:38:32 -0600
commit968de2cfc281216ec41ba5673b5cfb52c66006f7 (patch)
tree234f31101dfd23053d199a1b7d4bd7bd38e48681 /package.json
parent396a4e057ab48657c5427fd855e503afcb1813c5 (diff)
Fix sass-lint config (#10982)
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json
index 6c476bd79..26ff64851 100644
--- a/package.json
+++ b/package.json
@@ -10,9 +10,10 @@
     "build:production": "cross-env RAILS_ENV=production NODE_ENV=production ./bin/webpack",
     "manage:translations": "node ./config/webpack/translationRunner.js",
     "start": "node ./streaming/index.js",
-    "test": "${npm_execpath} run test:lint && ${npm_execpath} run test:jest",
-    "test:lint": "eslint --ext=js .",
-    "test:lint:sass": "sass-lint .",
+    "test": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:jest",
+    "test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass",
+    "test:lint:js": "eslint --ext=js .",
+    "test:lint:sass": "sass-lint -v",
     "test:jest": "cross-env NODE_ENV=test jest --coverage"
   },
   "repository": {