diff options
author | eug-vs <eug-vs@keemail.me> | 2020-04-18 20:52:31 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-04-18 20:52:31 +0300 |
commit | 8e4a483fb7d1ebdfc950c1cc456ae2d4bd558147 (patch) | |
tree | 4197a0884bac28a1747efac1815ec5c0005cfda8 /.eslintrc.json | |
parent | 9272b0af3d7b2fba4738a341a1f2776243e0e515 (diff) | |
download | react-benzin-8e4a483fb7d1ebdfc950c1cc456ae2d4bd558147.tar.gz |
style: fix remaining errors
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index a755820..5e44a20 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -13,9 +13,11 @@ "quotes": ["error", "single"], "react/prop-types": 0, "react/no-children-prop": 0, + "react/no-danger": 0, "arrow-body-style": 0, "no-cond-assign": 0, "arrow-parens": [2, "as-needed"], - "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ] + "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ], + "max-len": ["error", { "code": 120 }] } } |