From 4925f485eafcd63b4a60204911a16d405069b1b3 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 26 Mar 2020 21:32:18 +0400 Subject: feat(import): order Signed-off-by: Valentin Popov --- src/rules/import/default.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/rules/import/default.json') diff --git a/src/rules/import/default.json b/src/rules/import/default.json index 77ec282..291e45f 100644 --- a/src/rules/import/default.json +++ b/src/rules/import/default.json @@ -13,5 +13,30 @@ ], "import/no-webpack-loader-syntax": [ "error" + ], + "import/order": [ + "error", + { + "alphabetize": { + "caseInsensitive": false, + "order": "asc" + }, + "groups": [ + [ + "builtin", + "external" + ], + [ + "internal", + "parent", + "sibling" + ], + [ + "index" + ], + "unknown" + ], + "newlines-between": "always" + } ] } -- cgit v1.2.3