diff --git a/eslint.config.js b/eslint.config.js index a0f099c48..55ad4d9a2 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -19,7 +19,15 @@ export default tseslint.config( { rules: { // add rule overrides here - "no-undef": "off" + "no-undef": "off", + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": [ + "error", + { + "argsIgnorePattern": "^_", + "varsIgnorePattern": "^_", + } + ] } }, {