diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/import.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -288,7 +288,7 @@ - [ ] "export" - [X] "exports-last" - [ ] "extensions" -- [ ] "first" +- [X] "first" - [ ] "group-exports" - [ ] "imports-first" - [ ] "max-dependencies" diff --git a/src/rules/import.json b/src/rules/import.json index 152f009..c7b7dba 100644 --- a/src/rules/import.json +++ b/src/rules/import.json @@ -1,5 +1,8 @@ { "import/exports-last": [ "error" + ], + "import/first": [ + "error" ] } |