File tree 3 files changed +6
-3
lines changed
packages/eslint-config/src
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 7
7
"@typescript-eslint/no-unused-vars" : [
8
8
" error" ,
9
9
{
10
- "argsIgnorePattern" : " ^_"
10
+ "argsIgnorePattern" : " ^_" ,
11
+ "varsIgnorePattern" : " ^_"
11
12
}
12
13
],
13
14
"@typescript-eslint/consistent-type-imports" : [
Original file line number Diff line number Diff line change 7
7
"@typescript-eslint/no-unused-vars" : [
8
8
" error" ,
9
9
{
10
- "argsIgnorePattern" : " ^_"
10
+ "argsIgnorePattern" : " ^_" ,
11
+ "varsIgnorePattern" : " ^_"
11
12
}
12
13
],
13
14
"@typescript-eslint/consistent-type-imports" : [
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ export const typescript = () => [
96
96
'error' ,
97
97
{
98
98
argsIgnorePattern : '^_' ,
99
+ varsIgnorePattern : '^_' ,
99
100
} ,
100
101
] ,
101
102
"@typescript-eslint/consistent-type-imports" : [
@@ -147,7 +148,7 @@ export const react = () => [
147
148
"react-hooks/exhaustive-deps" : "error" ,
148
149
"react-compiler/react-compiler" : "warn" ,
149
150
150
- // from next config
151
+ // from next config, comment below is used to track diff
151
152
152
153
// 'jsx-a11y/alt-text': [
153
154
// 'warn',
You can’t perform that action at this time.
0 commit comments