Explicitly disable eslint rule 'no-unused-vars'

They way the project is structured this isn't really usable for now but
might change with move to ESM modules.

See: https://eslint.org/docs/latest/rules/no-unused-vars

Ref: #8068
Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser 2025-06-13 18:23:18 +02:00
parent 10f331271e
commit 782443c543
No known key found for this signature in database

View file

@ -45,7 +45,7 @@ const configEslintRecommended = {
"no-unreachable": "warn",
"no-unsafe-negation": ["warn", { "enforceForOrderingRelations": true }],
"no-unused-labels": "warn",
"no-unused-vars": "off",
/* "no-unused-vars": "warn", */
"use-isnan": "warn",
"valid-typeof": "warn",
}