diff --git a/eslint.config.mjs b/eslint.config.mjs index aeeaba8..290f18a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -90,6 +90,14 @@ export default [{ allowSamePrecedence: true, }, ], + 'no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + caughtErrorsIgnorePattern: '^_', + }, + ], 'import/extensions': [ 'error', {