Reproduced on playground.
The error / warning should be present on line 8, not line 1.
/main.ts:1:1 [assist/source/organizeImports](https://biomejs.dev/assist/actions/organize-imports) FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ℹ The imports and exports are not sorted.
> 1 │ import "a";
│ ^^^^^^^^^^^
2 │ import "b";
3 │
ℹ Safe fix: Organize Imports (Biome)
6 6 │ const b = "b";
7 7 │
8 │ - export·{·b,·a·};
8 │ + export·{·a,·b·};
9 9 │
Environment information
Reproduced on playground.
Rule name
organizeImports
Playground link
https://biomejs.dev/playground/?lintRules=organizeImports&cssModules=true&code=aQBtAHAAbwByAHQAIAAiAGEAIgA7AAoAaQBtAHAAbwByAHQAIAAiAGIAIgA7AAoACgAKAGMAbwBuAHMAdAAgAGEAIAA9ACAAIgBhACIAOwAKAGMAbwBuAHMAdAAgAGIAIAA9ACAAIgBiACIAOwAKAAoAZQB4AHAAbwByAHQAIAB7ACAAYgAsACAAYQAgAH0AOwAKAA%3D%3D&language=ts
Expected result
The error / warning should be present on line 8, not line 1.
Output:
Code of Conduct