diff --git a/eslint.config.js b/eslint.config.js index 5c68edc..5297430 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -30,5 +30,17 @@ export default ts.config( parser: ts.parser, }, }, + }, + { + rules: { + '@typescript-eslint/no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + caughtErrorsIgnorePattern: '^_', + }, + ], + }, } -); +); \ No newline at end of file