diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/import.json | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -286,7 +286,7 @@ - [ ] "default" - [ ] "dynamic-import-chunkname" - [ ] "export" -- [ ] "exports-last" +- [X] "exports-last" - [ ] "extensions" - [ ] "first" - [ ] "group-exports" diff --git a/src/rules/import.json b/src/rules/import.json index 0967ef4..152f009 100644 --- a/src/rules/import.json +++ b/src/rules/import.json @@ -1 +1,5 @@ -{} +{ + "import/exports-last": [ + "error" + ] +} |