dprint-plugin-typescript
dprint-plugin-typescript copied to clipboard
multiple single-line comments before a semi is split
Describe the bug
dprint-plugin-typescript version: 0.55.0
Input Code
const earlyExit =
!yesNo() // foo
// bar
// baz
;
Expected Output
const earlyExit =
!yesNo() // foo
// bar
// baz
;
or maybe
const earlyExit =
!yesNo() // foo
// bar
// baz
;
or maybe
const earlyExit =
!yesNo(); // foo
// bar
// baz
Actual Output
const earlyExit = !yesNo() // foo
; // bar
// baz
The ; is interleaved with the rest of the comments