And incorrectly indents things that follow them.
Begin with
```js
{
/*
* foo
* bar
**/
baz
}
```
Insert an opening curly brace on a new line before the comment, and a closing one on a new line after the comment. The latter will trigger reformatting, and the result is:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Best Result would be:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Begin with
```js
{
/*
* foo
* bar
**/
baz
}
```
Insert an opening curly brace on a new line before the comment, and a closing one on a new line after the comment. The latter will trigger reformatting, and the result is:
```js
{
/*
* foo
* bar
**/
baz;
}
```
Best Result would be:
```js
{
/*
* foo
* bar
**/
baz;
}
```