Index: eslint-config-eyeo/index.js |
=================================================================== |
--- a/eslint-config-eyeo/index.js |
+++ b/eslint-config-eyeo/index.js |
@@ -35,17 +35,18 @@ |
"brace-style": ["error", "allman", {allowSingleLine: true}], |
"camelcase": ["error", {properties: "never"}], |
"comma-dangle": "error", |
"comma-spacing": "error", |
"comma-style": "error", |
"computed-property-spacing": "error", |
"eol-last": "error", |
"func-call-spacing": "error", |
- "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], |
+ "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first", |
+ ObjectExpression: "first"}], |
"key-spacing": "error", |
"keyword-spacing": "error", |
"linebreak-style": "error", |
"lines-around-directive": "error", |
"max-len": ["error", 80, {ignoreUrls: true, ignoreRegExpLiterals: true}], |
"new-parens": "error", |
"no-array-constructor": "error", |
"no-caller": "error", |