File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 11{
2- "extends" : " next/core-web-vitals"
2+ "env" : {
3+ "node" : true ,
4+ "browser" : true ,
5+ "es6" : true
6+ },
7+ "extends" : " next/core-web-vitals" ,
8+ "plugins" : [
9+ " eslint-plugin-react" , " eslint-plugin-react-hooks"
10+ ],
11+ "rules" : {
12+ "indent" : [" error" , 2 ],
13+ "linebreak-style" : [" error" , " unix" ],
14+ "quotes" : [" error" , " single" ],
15+ "semi" : [" error" , " never" ],
16+ "no-unused-vars" : " error" ,
17+ "no-undef" : " error" ,
18+ "no-trailing-spaces" : " error" ,
19+ "no-console" : [" error" , { "allow" : [" error" ] }]
20+ }
321}
Original file line number Diff line number Diff line change 1111 "build" : " next build" ,
1212 "start" : " next start" ,
1313 "lint" : " next lint" ,
14+ "lint:fix" : " next lint --fix ." ,
1415 "export" : " npm run build && next export"
1516 },
1617 "dependencies" : {
You can’t perform that action at this time.
0 commit comments