diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 722f2b8ae..230365d86 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,7 +23,7 @@ "singleLine": { "afterColon": false } }], "max-params": ["warn", 6], - "max-statements": ["warn", 30], + "max-statements": ["warn", 31], "max-statements-per-line": ["error", { "max": 2 }], "multiline-comment-style": "off", "multiline-ternary": ["error", "always-multiline"], @@ -46,6 +46,7 @@ "prefer-spread": "off", "prefer-template": "off", "quote-props" : ["error", "consistent-as-needed"], + "quotes": ["error", "double", { "avoidEscape": true }], "require-jsdoc": "off", "require-unicode-regexp": "off", "space-before-function-paren": ["error", { |