And incorrectly indents things that follow them.
Format:
```js
{
/*
* foo
* bar
**/
baz
}
```
Current:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Best Result would be:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Format:
```js
{
/*
* foo
* bar
**/
baz
}
```
Current:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Best Result would be:
```js
{
/*
* foo
* bar
**/
baz;
}
```