Closed
Description
Given the first example in https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/order.md, is there an option to get
// 3. "internal" modules
// (if you have configured your path or webpack to handle your internal paths differently)
import foo from 'src/foo';
import type { Bar } from 'src/bar';
// 4. modules from a "parent" directory
import foo from '../foo';
import qux from '../../foo/qux';
import type { XYZ } from '../../foo/xyz';
// 5. "sibling" modules from the same or a sibling's directory
import bar from './bar';
import baz from './bar/baz';
? I've tried to search the existing issues, #2347 seems closest but isn't quite the behavior I want.
Metadata
Metadata
Assignees
Labels
No labels