diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/unicorn/default.json | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -480,7 +480,7 @@ - [ ] "expiring-todo-comments" - [ ] "explicit-length-check" - [X] "filename-case" -- [ ] "import-index" +- [X] "import-index" - [ ] "new-for-builtins" - [ ] "no-abusive-eslint-disable" - [ ] "no-array-instanceof" diff --git a/src/rules/unicorn/default.json b/src/rules/unicorn/default.json index 7a7dc1b..435ef7e 100644 --- a/src/rules/unicorn/default.json +++ b/src/rules/unicorn/default.json @@ -8,6 +8,12 @@ } } ], + "unicorn/import-index": [ + "error", + { + "ignoreImports": true + } + ], "unicorn/no-console-spaces": [ "error" ], |