mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-15 03:09:59 -05:00
accept new baseline
This commit is contained in:
17
tests/baselines/reference/organizeImports/SortComments.ts
Normal file
17
tests/baselines/reference/organizeImports/SortComments.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
// ==ORIGINAL==
|
||||
|
||||
// Header
|
||||
import "lib3";
|
||||
// Comment2
|
||||
import "lib2";
|
||||
// Comment1
|
||||
import "lib1";
|
||||
|
||||
// ==ORGANIZED==
|
||||
|
||||
// Header
|
||||
// Comment1
|
||||
import "lib1";
|
||||
// Comment2
|
||||
import "lib2";
|
||||
import "lib3";
|
||||
Reference in New Issue
Block a user