Skip to content

Commit

Permalink
fix(deps): update dependency prettier to v3.4.1
Browse files Browse the repository at this point in the history
##### [v3.4.1](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#341)

[diff](prettier/prettier@3.4.0...3.4.1)

##### Remove unnecessary parentheses around assignment in `v-on` ([#16887](prettier/prettier#16887) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->

```vue
<!-- Input -->
<template>
  <button @click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @click="foo += 2">Click</button>
</template>
```
  • Loading branch information
renovate[bot] authored Nov 26, 2024
1 parent eaaf92a commit 29c1ba0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 29c1ba0

Please sign in to comment.