| Index: eslint-config-eyeo/index.js | 
| diff --git a/eslint-config-eyeo/index.js b/eslint-config-eyeo/index.js | 
| index eec5ed72d582d32c3b4178ee49c7af76790f54a4..88c2103f5f2f7dde59d1ba16ae01cb806ff53258 100644 | 
| --- a/eslint-config-eyeo/index.js | 
| +++ b/eslint-config-eyeo/index.js | 
| @@ -40,7 +40,7 @@ module.exports = { | 
| "computed-property-spacing": "error", | 
| "eol-last": "error", | 
| "func-call-spacing": "error", | 
| -    "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], | 
| +    "indent-legacy": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], | 
| "key-spacing": "error", | 
| "keyword-spacing": "error", | 
| "linebreak-style": "error", | 
| @@ -64,7 +64,7 @@ module.exports = { | 
| "no-labels": ["error", {allowLoop: true}], | 
| "no-lone-blocks": "error", | 
| "no-lonely-if": "error", | 
| -    "no-multi-spaces": "error", | 
| +    "no-multi-spaces": ["error", {ignoreEOLComments: true}], | 
| "no-new-func": "error", | 
| "no-new-object": "error", | 
| "no-proto": "error", | 
|  |