diff options
Diffstat (limited to '.eslintrc.json')
| -rw-r--r-- | .eslintrc.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index a528c8f59..449161cd6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,7 +8,10 @@ ], "rules": { "camelcase": "off", - "comma-dangle": ["warn", "always-multiline"], + "comma-dangle": ["warn", { + "arrays": "always-multiline", + "objects": "always-multiline" + }], "eqeqeq": "off", "indent": ["warn", "tab", { "SwitchCase": 1 }], "linebreak-style": ["error", "unix"], |
