Closed
Description
From microsoft/vscode#40454 (comment)
TypeScript Version: 2.7.0-dev.20171214
Code
(
<div>
text
</div>
)
Run format
Expected behavior:
(
<div>
text
</div>
)
Actual behavior:
No change. Content remains:
(
<div>
text
</div>
)
The </div>
is de-indented if the body is a tag instead of text:
(
<div>
<span />
</div>
)