We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-unused-vars
_
1 parent 9a0b46a commit d25fa60Copy full SHA for d25fa60
2 files changed
eslint.config.mjs
@@ -146,6 +146,12 @@ export default [
146
"@typescript-eslint/prefer-regexp-exec": "off",
147
"@typescript-eslint/require-await": "off",
148
"@typescript-eslint/restrict-template-expressions": "off",
149
+ "@typescript-eslint/no-unused-vars": [
150
+ "error",
151
+ {
152
+ "argsIgnorePattern": "^_",
153
+ }
154
+ ],
155
"func-style": "off",
156
},
157
src/config/db-config.test.ts
@@ -153,7 +153,6 @@ const packSpecPrettyPrintingMacro = test.macro({
title: (
_providedTitle: string | undefined,
packStr: string,
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
_packObj: dbConfig.Pack,
158
) => `Prettyprint pack spec: '${packStr}'`,
159
});
0 commit comments