From 61ed51d56384a53ee0ee3abde02b4ee73bd77bf3 Mon Sep 17 00:00:00 2001 From: Hrusikesh Panda Date: Mon, 9 Jul 2018 20:54:06 -0400 Subject: [PATCH] fix: Make stylelint not look into docs folder --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ddf59f1..4d832b0d 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "demo": "webpack-serve --content ./docs --port 3000 --open --config docs/webpack.config.js", "prepublishOnly": "npm run build", "lint": "eslint src docs webpack.config.js && stylelint \"src/**/*.css\" --fix", - "lint:nofix": "eslint src docs webpack.config.js && stylelint \"src/**/*.css\"", + "lint:nofix": "eslint src docs webpack.config.js && stylelint \"./src/**/*.css\"", "format": "prettier-eslint \"src/**/*.js\" \"docs/**/*.js\" webpack.config.js", "semantic-release": "semantic-release", "test": "cross-env NODE_ENV=test ava",