Revise npm run lint to also lint scss files

This commit is contained in:
LB Johnston 2019-05-05 15:48:01 +10:00 committed by Thibaud Colas
parent adc4767eec
commit 3271d91237

View file

@ -111,7 +111,7 @@
"webpack:prod:build": "webpack --config ./client/webpack/prod.config.js",
"lint:js": "eslint --max-warnings 16 ./client",
"lint:css": "stylelint **/*.scss",
"lint": "npm run lint:js",
"lint": "npm run lint:js && npm run lint:css",
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",