Allow unused variables in function headers and caught exceptions (#9588)

This commit is contained in:
Mario Pietsch
2026-01-17 18:51:51 +01:00
committed by GitHub
parent 00e17874f0
commit be84dee26b

View File

@@ -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",