I haven't found a rule for it, so I'm assuming there is none yet. It would be nice if there was an option to enforce alphabetic order inside the list of named imports, ie being able to autofix this:
-import whatever, {d, b, c, a} from 'foo';
+import whatever, {a, b, c, d} from 'foo';
Related to #1577.
Does https://eslint.org/docs/rules/sort-imports not cover this with { ignoreDeclarationSort: true }?
Native eslint sort-imports rule with { ignoreDeclarationSort: true } works as expected for me. No any conflicts with eslint-plugin-import. Can be closed.
Most helpful comment
Native eslint
sort-importsrule with{ ignoreDeclarationSort: true }works as expected for me. No any conflicts witheslint-plugin-import. Can be closed.