Commit 3909c2b2 authored by Aarni Koskela's avatar Aarni Koskela
Browse files

eslintrc: enable no-redeclare but with builtinGlobals: false

parent 247f371d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",