You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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.
The text was updated successfully, but these errors were encountered:
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
? I've tried to search the existing issues, #2347 seems closest but isn't quite the behavior I want.
The text was updated successfully, but these errors were encountered: