Sometimes, we have a wildcard and non-wildcard import of the same module, e.g.
import * as module1 from 'lib/module1';
import {Module1Helper} from 'lib/module1';
eslint-plugin-simple-import sort allows these imports to be in any order. Is this intentional?
ESLint Online Playground link