From 8490ecaec60d45530ba1537b3d5a1223781306c7 Mon Sep 17 00:00:00 2001 From: Ian Wang Date: Mon, 7 Jan 2019 16:00:05 +0800 Subject: [PATCH] update prettier rule; add jsxSingleQuote to true --- eslintrc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eslintrc.json b/eslintrc.json index 14c7155..e793525 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -22,10 +22,11 @@ "prettier/prettier": [ "error", { "semi": false, + "printWidth": 80, "arrowParens": "always", "jsxBracketSameLine": true, - "singleQuote": true, - "parser": "flow" + "jsxSingleQuote": true, + "singleQuote": true } ] }