From 3271d91237eca64f7fa291dd484698cf0b45a8fd Mon Sep 17 00:00:00 2001 From: LB Johnston Date: Sun, 5 May 2019 15:48:01 +1000 Subject: [PATCH] Revise `npm run lint` to also lint scss files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3de5a1535..a9dfb9620 100644 --- a/package.json +++ b/package.json @@ -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",