File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,12 @@ export default [
146
146
"@typescript-eslint/prefer-regexp-exec" : "off" ,
147
147
"@typescript-eslint/require-await" : "off" ,
148
148
"@typescript-eslint/restrict-template-expressions" : "off" ,
149
+ "@typescript-eslint/no-unused-vars" : [
150
+ "error" ,
151
+ {
152
+ "argsIgnorePattern" : "^_" ,
153
+ }
154
+ ] ,
149
155
"func-style" : "off" ,
150
156
} ,
151
157
} ,
Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ const packSpecPrettyPrintingMacro = test.macro({
153
153
title : (
154
154
_providedTitle : string | undefined ,
155
155
packStr : string ,
156
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
157
156
_packObj : dbConfig . Pack ,
158
157
) => `Prettyprint pack spec: '${ packStr } '` ,
159
158
} ) ;
You can’t perform that action at this time.
0 commit comments