Currently Deno fmt sorts verbatim imports alphabetically, this is conflicting with the Organize Imports in VS Code where it sorts import { type ... }import { type ... } entries individually at the end.
Example:
// VS Codeimport { bar, foo, type Bar, type Foo} from "module";// Deno fmtimport { type Bar, bar, type Foo, foo} from "module";
// VS Codeimport { bar, foo, type Bar, type Foo} from "module";// Deno fmtimport { type Bar, bar, type Foo, foo} from "module";
When combined with the following VS Code option, all of the files flashes between the two formats in random order depending on how formatOnSaveformatOnSave is configured.