diff --git a/lint-staged.config.js b/lint-staged.config.js index 2217f59..d809cac 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,3 +1,5 @@ module.exports = { - "*.js": "eslint --cache --fix" + "tests/**/*.js": "eslint --cache --fix", + "src/**/*.js": "eslint --cache --fix", + "utils/**/*.js": "eslint --cache --fix" };