Closed as not planned
Description
TypeScript Version: 2.4.0 / nightly (2.5.0-dev.201xxxxx)
Code
Consider the source file
function foo(
a: number) {^}
where caret is at ^
, and tsconfig.json
is {}
. Then hit <Enter>
.
Expected behavior:
source file becomes
function foo(
a: number) {
^
}
Actual behavior:
source file becomes
function foo(
a: number) {
^
}