Skip to content

Commit

Permalink
format file
Browse files Browse the repository at this point in the history
  • Loading branch information
kalleep committed Jan 10, 2024
1 parent b50507e commit bd2c08b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

### Formatter

#### Bug fixes

- Fix [#1172](https://github.com/biomejs/biome/issues/1172). Fix placement of line comment after function expression parentheses, they are now attached to first statement in body. Contributed by @kalleep

### JavaScript APIs

### Linter
Expand All @@ -32,7 +36,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

#### Bug fixes

<<<<<<< HEAD
### Parser


Expand All @@ -53,11 +56,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
#### Bug fixes

- Fix [#1170](https://github.com/biomejs/biome/issues/1170). Fix placement of comments inside default switch clause. Now all line comments that have a preceding node will keep their position. Contributed by @kalleep
=======
- Fix [#1172](https://github.com/biomejs/biome/issues/1172). Fix placement of line comment after function expression parentheses, they are now attached to first statement in body. Contributed by @kalleep

### JavaScript APIs
>>>>>>> accd41b745 (fix changelog)

### Linter

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ function b() // leading comment

}


function c( //some comment
foo, bar,
) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ function b() // leading comment

}


function c( //some comment
foo, bar,
) {}
Expand Down
10 changes: 4 additions & 6 deletions website/src/content/docs/internals/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

### Formatter

#### Bug fixes

- Fix [#1172](https://github.com/biomejs/biome/issues/1172). Fix placement of line comment after function expression parentheses, they are now attached to first statement in body. Contributed by @kalleep

### JavaScript APIs

### Linter
Expand All @@ -38,7 +42,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

#### Bug fixes

<<<<<<< HEAD
### Parser


Expand All @@ -59,11 +62,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
#### Bug fixes

- Fix [#1170](https://github.com/biomejs/biome/issues/1170). Fix placement of comments inside default switch clause. Now all line comments that have a preceding node will keep their position. Contributed by @kalleep
=======
- Fix [#1172](https://github.com/biomejs/biome/issues/1172). Fix placement of line comment after function expression parentheses, they are now attached to first statement in body. Contributed by @kalleep

### JavaScript APIs
>>>>>>> accd41b745 (fix changelog)

### Linter

Expand Down

0 comments on commit bd2c08b

Please sign in to comment.