diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 63fefe4d..184e2974 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -21,6 +21,7 @@ "eqeqeq": [2, "always"], "one-var": [2, "never"], "comma-dangle": [2, "always-multiline"], + "spaced-comment": [2, "always"], "no-restricted-globals": [ "error", { @@ -32,8 +33,7 @@ "message": "Use local parameter instead." } ], - "array-bracket-newline": [2, { "minItems": 2 }], - "array-element-newline": [2, { "minItems": 2 }] + "no-param-reassign": [2, { "props": false }] }, "parserOptions": { "sourceType": "module" |