From 8e7437366a8eb0dbc2e2ec819efc794748e2a78b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abd=C3=B3n=20Rodr=C3=ADguez=20Davila?= Date: Tue, 10 Jan 2017 02:28:35 +0100 Subject: [PATCH] Add .gitignore as ignore-path to ESLint (#954) To avoid lint the `build` folder. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f851c4de3..2ad990610 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "eslint-plugin-html": "^1.7.0" }, "scripts": { - "lint": "eslint . --ext js,html; exit 0;", + "lint": "eslint . --ext js,html --ignore-path .gitignore", "test": "npm run lint && polymer test" } }