eslintrc: enable no-redeclare but with builtinGlobals: false

This commit is contained in:
Aarni Koskela 2023-05-19 12:55:06 +03:00
parent 247f371d3e
commit 3909c2b2a0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ module.exports = {
"no-extra-semi": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multi-spaces": "error",
"no-redeclare": "off",
"no-redeclare": ["error", {builtinGlobals: false}],
"no-trailing-spaces": "error",
"no-unused-vars": "off",
"no-whitespace-before-property": "error",