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
import c from 'Bar';
import a from 'foo';
import b from 'dirA/bar';
import index from './';
import type { C } from 'dirA/Bar';
import type { A } from 'foo';
The rules engine currently requires grouping the paths that match the pathGroup pattern together, even if one of the imports is a type import, creating this unintuitive order:
import c from 'Bar';
import a from 'foo';
import type { C } from 'dirA/Bar';
import b from 'dirA/bar';
import index from './';
import type { A } from 'foo';
The text was updated successfully, but these errors were encountered:
Given the imports
and ESLint config
The rules engine currently requires grouping the paths that match the
pathGroup
pattern together, even if one of the imports is a type import, creating this unintuitive order:The text was updated successfully, but these errors were encountered: