From dbb2943ab3128e232766cdebd0456e6f3474ae12 Mon Sep 17 00:00:00 2001 From: "TZU-YEN, CHANG" Date: Tue, 3 Mar 2020 20:09:08 +0800 Subject: [PATCH] feat(eslint-config-typescript): setup rules below, no semi and single quotes --- packages/ESLintConfigTypeScript/.eslintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/ESLintConfigTypeScript/.eslintrc.json b/packages/ESLintConfigTypeScript/.eslintrc.json index ae62141..62e04e2 100644 --- a/packages/ESLintConfigTypeScript/.eslintrc.json +++ b/packages/ESLintConfigTypeScript/.eslintrc.json @@ -14,6 +14,8 @@ "prettier/@typescript-eslint" ], "rules": { + "semi": [2, "never"], + "quotes": [2, "single"], "import/extensions": [ "error", "ignorePackages",