diff options
author | Valentin Popov <info@valentineus.link> | 2020-03-26 20:32:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-03-26 20:32:18 +0300 |
commit | 4925f485eafcd63b4a60204911a16d405069b1b3 (patch) | |
tree | c588438b4d43d2d0605545b5e7bb7e0a1d583dcf | |
parent | 46d05009cc38f7c1c97f5bb42d3c018cb606b681 (diff) | |
download | eslint-config-4925f485eafcd63b4a60204911a16d405069b1b3.tar.xz eslint-config-4925f485eafcd63b4a60204911a16d405069b1b3.zip |
feat(import): order
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/import/default.json | 25 |
2 files changed, 26 insertions, 1 deletions
@@ -331,7 +331,7 @@ - [ ] "no-unused-modules" - [ ] "no-useless-path-segments" - [X] "no-webpack-loader-syntax" -- [ ] "order" +- [X] "order" - [ ] "prefer-default-export" - [ ] "unambiguous" 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" + } ] } |