Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 45cd4ca

Browse files
committed
fix(eslint lint): only lint *.js fils, not css
1 parent b8593af commit 45cd4ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"precommit": "lint-staged",
2424
"gen": "plop --plopfile ./utils/scripts/generators/index.js",
2525
"analyze": "cross-env ANALYZE=1 next build",
26-
"lint": "eslint --fix pages/**/*.js components/**/* containers/**/* stores/**/* utils/**/*",
27-
"lint:watch": "esw -w pages/**/*.js components/**/* containers/**/* stores/**/* utils/**/*",
26+
"lint": "eslint --fix pages/**/*.js components/**/*.js containers/**/*.js stores/**/*.js utils/**/*.js",
27+
"lint:watch": "esw -w pages/**/*.js components/**/*.js containers/**/*.js stores/**/*.js utils/**/*.js",
2828
"test": "cross-env NODE_ENV=test GOAL=test jest --config .jest.config.js",
2929
"test:dev": "cross-env NODE_ENV=dev GOAL=test jest --config .jest.config.js",
3030
"test:watch": "npm run test -- --watch",

0 commit comments

Comments
 (0)