From 5f1d2b40dc493acdd5ead5ac0529194c41dc1cc8 Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Sun, 31 Dec 2017 12:03:06 -0800 Subject: [PATCH] fix(style-lint): Run style lints against the scss Rather than non-existant css. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8553b88a..ea2a20fa 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ "lint": "cross-env NODE_ENV=development eslint --cache --format=node_modules/eslint-formatter-pretty .", "lint-ci": "npm run lint && npm run flow", "lint-fix": "npm run lint -- --fix", - "lint-styles": "stylelint app/*.css app/components/*.css --syntax scss", - "lint-styles-fix": "stylefmt -r app/*.css app/components/*.css", + "lint-styles": "stylelint app/*.scss app/components/*.scss --syntax scss", + "lint-styles-fix": "stylefmt -r app/*.scss app/components/*.scss", "package": "npm run build && build --publish never", "package-all": "npm run build && build -mwl", "package-linux": "npm run build && build --linux",