Closed
Description
π Search Terms
organizeImports
π Version & Regression Information
- I was unable to test this on prior versions because this seems to be a tooling issue.
β― Playground Link
No response
π» Code
import {abc, Abc} from 'b';
import {
I,
R,
M,
} from 'a';
π Actual behavior
This needs to be organized twice in order to be stable. The first time we get
import {I, M, R} from 'a';
import {abc, Abc} from 'b';
and the second time we get
import {I, M, R} from 'a';
import {Abc, abc} from 'b';
π Expected behavior
I'd expect
import {I, M, R} from 'a';
import {Abc, abc} from 'b';
the first time around
Additional information about the issue
No response