mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
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:
parent
10f331271e
commit
782443c543
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue