diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 5e44a20..c86a906 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -11,13 +11,13 @@ "rules": { "jsx-quotes": ["error", "prefer-double"], "quotes": ["error", "single"], - "react/prop-types": 0, - "react/no-children-prop": 0, - "react/no-danger": 0, + "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ], + "max-len": ["error", { "code": 120 }], + "arrow-parens": [2, "as-needed"], "arrow-body-style": 0, "no-cond-assign": 0, - "arrow-parens": [2, "as-needed"], - "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ], - "max-len": ["error", { "code": 120 }] + "react/prop-types": 0, + "react/no-children-prop": 0, + "react/no-danger": 0 } } |