diff options
-rw-r--r-- | .eslintrc.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml index 7950d297416..cef538a249d 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -38,7 +38,7 @@ rules: - allow: - __ - _links - no-mixed-operators: 0 + no-mixed-operators: off vue/html-self-closing: - error - html: @@ -48,7 +48,9 @@ rules: svg: always math: always ## Conflicting rules with prettier: - space-before-function-paren: 0 - curly: 0 - arrow-parens: 0 - function-paren-newline: 0 + space-before-function-paren: off + curly: off + arrow-parens: off + function-paren-newline: off + object-curly-newline: off + padded-blocks: off |