File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "extends" : [" next/core-web-vitals" ],
3+ "parser" : " @typescript-eslint/parser" ,
4+ "plugins" : [" @typescript-eslint" ],
35 "rules" : {
46 "prefer-const" : " error" ,
57 "no-var" : " error" ,
6- "no-unused-vars" : " warn"
8+ "no-unused-vars" : " off" ,
9+ "@typescript-eslint/no-unused-vars" : [
10+ " warn" ,
11+ {
12+ "argsIgnorePattern" : " ^_" ,
13+ "varsIgnorePattern" : " ^_" ,
14+ "caughtErrorsIgnorePattern" : " ^_"
15+ }
16+ ]
717 }
818}
Original file line number Diff line number Diff line change 1- pnpm format:check && pnpm lint && pnpm type-check
1+ pnpm format:check && pnpm lint:ci && pnpm type-check
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import {
3030 RotateCw ,
3131 X ,
3232 Focus ,
33+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
3334 Layers ,
3435 Plus ,
3536} from 'lucide-react' ;
You can’t perform that action at this time.
0 commit comments