I am working in a team which mostly uses InteliJ. There imports get automatically sorted after the path. So "@namespace" goes first then less nested imports "./" > "../../" and on the same level its alphabetical.
Until now I used the "source.organizeImports" setting from VSCode which sorted the imports for named and default imports. This cant be customized as stated in another SO question and is not listed here: https://code.visualstudio.com/docs/languages/typescript#_organize-imports
I tried the VSC extension vsc-organize-imports but that doesnt have that option either. I would like to avoid to configure and run esLint to fix my import order. Any other suggestions, setting or extension I could try?
--fix
command to ESLint:eslint-plugin-import
– Sandler