diff --git a/.gitignore b/.gitignore index cb7ed724973..4a1020c0fe7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ dist .env .env.* .npmrc +.eslintcache # Log files npm-debug.log* diff --git a/package.json b/package.json index 0f8582f9ad0..d7d9907acf1 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ ], "scripts": { "start": "npm --prefix ./demos run start", - "lint": "eslint --quiet --no-error-on-unmatched-pattern ./", - "lint:fix": "eslint --fix --quiet --no-error-on-unmatched-pattern ./", + "lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./", + "lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./", "lint:staged": "lint-staged", "test:open": "cypress open --project tests", "test": "cypress run --project tests",