eslintrc: enable no-redeclare but with builtinGlobals: false
This commit is contained in:
parent
247f371d3e
commit
3909c2b2a0
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue