diff options
-rw-r--r-- | web/.eslintrc.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/.eslintrc.json b/web/.eslintrc.json index 03de8088..84512e89 100644 --- a/web/.eslintrc.json +++ b/web/.eslintrc.json @@ -18,7 +18,12 @@ "rules": {
"indent": ["error", 4,
{
- "SwitchCase":1
+ "SwitchCase":1,
+ "VariableDeclarator":2,
+ "CallExpression":{
+ "arguments": 2
+ },
+ "MemberExpression": 2
}
],
"comma-spacing": [2,
|