Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Apr 24, 2023
1 parent 727d2fa commit d411464
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions changelog_unreleased/javascript/14736.md
@@ -1,30 +1,24 @@
#### Fix trailing parens tripping up skipToLineEnd (#14736 by @solarized-fox)
#### Fix empty line check between array elements (#14736 by @solarized-fox)

<!-- prettier-ignore -->
```jsx
// Input
[
1
,

2,

3
(a = b),

c // comment
]

// Prettier stable
[
1, 2,

3,
(a = b),
c, // comment
];

// Prettier main
[
1,

2,
(a = b),

3,
c, // comment
];
```

0 comments on commit d411464

Please sign in to comment.