-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatterFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do this
Milestone
Description
In VS Code (as it uses the built in formatter, I assume this is the best place to put the issue), the TS formatting produces this:
foo()
.then<void>(
function(): void {
},
function(): void {
}
)
.then<void>(
function(): void {
},
function(): void {
}
);
I would expect this:
foo()
.then<void>(
function(): void {
},
function(): void {
}
)
.then<void>(
function(): void {
},
function(): void {
}
);
The former is pretty hard to read.
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatterFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do this