From ca90c45cd7ad948e8e53903fd84a6c072982e713 Mon Sep 17 00:00:00 2001 From: Zedhugh Chen Date: Wed, 23 May 2018 00:37:57 +0800 Subject: [PATCH] change eslint rule. --- dot/.eslintrc.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dot/.eslintrc.json b/dot/.eslintrc.json index 23a3564..92a651c 100644 --- a/dot/.eslintrc.json +++ b/dot/.eslintrc.json @@ -7,7 +7,12 @@ "rules": { "comma-dangle": [2, "never"], "spaced-comment": "off", - "quotes": ["error", "double"], + "quotes": "off", + "indent": "off", + "func-names": "off", + "no-console": "off", + "no-plusplus": "off", + "wrap-iife": ["error", "any"], "react/jsx-filename-extension": "off" } }