Closed
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.