From 17f0d087885a41a0867997649bafff47f98fb150 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 28 Dec 2020 08:44:28 +0200 Subject: [PATCH] chore(eslint): remove `--ignore-path` (#1612) ESLint respects .gitignore --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1a31cb6f51..92379383d2 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "test:jest": "jest", "test:types": "tsd", "lint": "npm run lint:es && npm run lint:prettier", - "lint:es": "eslint --ignore-path .prettierignore .", + "lint:es": "eslint .", "lint:prettier": "npm run format:prettier:raw -- --check", "format": "npm run format:es && npm run format:prettier", "format:es": "npm run lint:es -- --fix",