Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
☀️ committed Apr 23, 2023
1 parent 6bddf9f commit 0d954d1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions changelog_unreleased/javascript/14736.md
@@ -0,0 +1,30 @@
#### Fix trailing parens tripping up skipToLineEnd (#14736 by @solarized-fox)

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

2,

3
]

// Prettier stable
[
1, 2,

3,
];

// Prettier main
[
1,

2,

3,
];
```

0 comments on commit 0d954d1

Please sign in to comment.