From 0db2060e0f73fdb073a1b42ab4aaa1625a44c64e Mon Sep 17 00:00:00 2001 From: brunosimon Date: Thu, 3 Aug 2017 23:12:58 +0200 Subject: [PATCH] :wrench: Linter > Remove rules --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index a05cc9b..084ddc6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { }, 'rules': { + 'node/no-unsupported-features': 0, 'no-console': 0, 'dot-notation': 1, 'eqeqeq': 1, @@ -30,7 +31,7 @@ module.exports = { 'func-style': [1, 'expression'], 'id-length': 0, 'indent': [1, 4], - 'keyword-spacing': [1, { after: false, before: false }], + 'keyword-spacing': 0, 'max-len': 0, 'new-cap': [1, { newIsCap: true, newIsCapExceptions: [], capIsNew: false, capIsNewExceptions: ['Immutable.Map', 'Immutable.Set', 'Immutable.List'] }], 'no-array-constructor': 1,