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 [
146146 "@typescript-eslint/prefer-regexp-exec" : "off" ,
147147 "@typescript-eslint/require-await" : "off" ,
148148 "@typescript-eslint/restrict-template-expressions" : "off" ,
149+ "@typescript-eslint/no-unused-vars" : [
150+ "error" ,
151+ {
152+ "argsIgnorePattern" : "^_" ,
153+ }
154+ ] ,
149155 "func-style" : "off" ,
150156 } ,
151157 } ,
Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ const packSpecPrettyPrintingMacro = test.macro({
153153 title : (
154154 _providedTitle : string | undefined ,
155155 packStr : string ,
156- // eslint-disable-next-line @typescript-eslint/no-unused-vars
157156 _packObj : dbConfig . Pack ,
158157 ) => `Prettyprint pack spec: '${ packStr } '` ,
159158} ) ;
You can’t perform that action at this time.
0 commit comments