1
0
Fork 0
forked from svrjs/svrjs

build: configure lint-staged to only lint files from tests, src, and utils directory

This commit is contained in:
Dorian Niemiec 2024-09-01 22:18:59 +02:00
parent 7f1dd091c0
commit ea8f17eb7d

View file

@ -1,3 +1,5 @@
module.exports = { module.exports = {
"*.js": "eslint --cache --fix" "tests/**/*.js": "eslint --cache --fix",
"src/**/*.js": "eslint --cache --fix",
"utils/**/*.js": "eslint --cache --fix"
}; };