diff --git a/eslint.config.mjs b/eslint.config.mjs index b0bea34d9..3a129c6c2 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -290,10 +290,12 @@ js.configs.recommended, "@stylistic/wrap-iife": "off", "@stylistic/wrap-regex": "off", "@stylistic/yield-star-spacing": "error", - yoda: "off", - // temporary rules + "yoda": "off", "no-useless-escape": "off", - "no-unused-vars": "warn", + "no-unused-vars": ["warn", { + "args": "none", + "caughtErrors": "none" + }], "no-empty": "off", "@stylistic/no-extra-semi": "off", "no-redeclare": "off",