diff --git a/.eslintrc b/.eslintrc index 585f456870..0aafa5a5e4 100644 --- a/.eslintrc +++ b/.eslintrc @@ -49,7 +49,7 @@ "no-shadow-restricted-names": 2, "no-shadow": [2, { "builtinGlobals": true }], "no-undef-init": 2, - "no-undef": [2, { typeof: true }], + "no-undef": [2, { "typeof": true }], "no-unused-vars": 2, "no-use-before-define": 2, "global-require": 2, @@ -104,17 +104,17 @@ "space-infix-ops": 2, "space-return-throw-case": 2, "space-unary-ops": 2, - "spaced-comment": [2, "always", { exceptions: ["-"]}], + "spaced-comment": [2, "always", { "exceptions": ["-"]}], "padded-blocks": [2, "never"], - "no-multiple-empty-lines": [2, {max: 2}] + "no-multiple-empty-lines": [2, {"max": 2}] }, "env": { "es6": true, "mocha": true, "node": true }, - ecmaFeatures : { - modules: true + "ecmaFeatures" : { + "modules": true }, "extends": "eslint:recommended" }