From cd81a868cf67c049e9456b8bee670053ba0a6507 Mon Sep 17 00:00:00 2001 From: BSKY Date: Wed, 18 Mar 2020 07:33:25 +0900 Subject: [PATCH] Update .eslintrc.json --- .eslintrc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index ccaf1a6..7a40259 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,5 +12,12 @@ "plugin:prettier/recommended", "prettier/@typescript-eslint" ], - "plugins": ["@typescript-eslint", "jest"] + "plugins": ["@typescript-eslint", "simple-import-sort", "jest"], + "rules": { + "import/first": "error", + "import/newline-after-import": "error", + "import/no-duplicates": "error", + "simple-import-sort/sort": "error", + "sort-imports": "off" + } }