aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-04-18 20:23:32 +0300
committereug-vs <eug-vs@keemail.me>2020-04-18 20:23:32 +0300
commit9941754be106accd5ea8ce4b6f8229dd6f4afc9b (patch)
tree9b4210cac746428f9c80f36cff48b5b330c825d2
parente46a591c1a16f6c1cb6c21548faf2bf6599cc923 (diff)
downloadreact-benzin-9941754be106accd5ea8ce4b6f8229dd6f4afc9b.tar.gz
feat: update linting rules
-rw-r--r--.eslintrc.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 0d36de5..c5c45a7 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -10,6 +10,10 @@
"ignorePatterns": "dist/",
"rules": {
"jsx-quotes": ["error", "prefer-double"],
- "quotes": ["error", "single"]
+ "quotes": ["error", "single"],
+ "react/prop-types": 0,
+ "arrow-body-style": 0,
+ "arrow-parens": [2, "as-needed"],
+ "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ]
}
}