From 6d238a077041ecf71156e36a11ba7a9f7dd73cac Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Mon, 23 Nov 2015 10:09:17 +0100 Subject: [PATCH] fix .eslintrc --- .eslintrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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" }