-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 4b55c61
authored
Update dependency @biomejs/biome to v1.7.3 (#52)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@biomejs/biome](https://biomejs.dev)
([source](https://togithub.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome))
| [`1.7.2` ->
`1.7.3`](https://renovatebot.com/diffs/npm/@biomejs%2fbiome/1.7.2/1.7.3)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>biomejs/biome (@​biomejs/biome)</summary>
###
[`v1.7.3`](https://togithub.com/biomejs/biome/blob/HEAD/CHANGELOG.md#173-2024-05-06)
[Compare
Source](https://togithub.com/biomejs/biome/compare/2c70d3fde5b13ec9ef0915d22837ab8321b6737f...b9f90b7ee63506a1995bc29f4e389efec25a1525)
##### CLI
##### Bug fixes
- The
[stdin-file-path](https://biomejs.dev/guides/integrate-in-editor/#use-stdin)
option now works correctly for Astro/Svelte/Vue files
([#​2686](https://togithub.com/biomejs/biome/pull/2686))
Fix [#​2225](https://togithub.com/biomejs/biome/issues/2225) where
lint output become empty for Vue files.
Contributed by [@​tasshi-me](https://togithub.com/tasshi-me)
- `biome migrate eslint` now correctly resolve `@scope/eslint-config`
([#​2705](https://togithub.com/biomejs/biome/issues/2705)).
Contributed by [@​Conaclos](https://togithub.com/Conaclos)
##### Formatter
##### Linter
##### New features
- Add
[nursery/useExplicitLengthCheck](https://biomejs.dev/linter/rules/use-explicit-length-check/).
##### Bug fixes
- [noBlankTarget](https://biomejs.dev/linter/rules/no-blank-target/) no
longer hangs when applying a code fix
([#​2675](https://togithub.com/biomejs/biome/issues/2675)).
Previously, the following code made Biome hangs when applying a code
fix.
```jsx
<a href="https://example.com" rel="" target="_blank"></a>
```
Contributed by [@​Conaclos](https://togithub.com/Conaclos)
- [noRedeclare](https://biomejs.dev/linter/rules/no-redeclare/) no
longer panics on conditional type
([#​2659](https://togithub.com/biomejs/biome/issues/2659)).
This is a regression introduced by
[#​2394](https://togithub.com/biomejs/biome/issues/2394).
This regression makes `noRedeclare` panics on every conditional types
with `infer` bindings.
Contributed by [@​Conaclos](https://togithub.com/Conaclos)
- [noUnusedLabels](https://biomejs.dev/linter/rules/no-unused-labels/)
and
[noConfusingLabels](https://biomejs.dev/linter/rules/no-confusing-labels/)
now ignore svelte reactive statements
([#​2571](https://togithub.com/biomejs/biome/issues/2571)).
The rules now ignore reactive Svelte blocks in Svelte components.
```svelte
<script>
$: { /* reactive block */ }
</script>
```
Contributed by [@​Conaclos](https://togithub.com/Conaclos)
- [useExportType](https://biomejs.dev/linter/rules/use-export-type/) no
longer removes leading comments
([#​2685](https://togithub.com/biomejs/biome/issues/2685)).
Previously, `useExportType` removed leading comments when it factorized
the `type` qualifier.
It now provides a code fix that preserves the leading comments:
```diff
- export {
+ export type {
/**leading comment*/
- type T
+ T
}
```
Contributed by [@​Conaclos](https://togithub.com/Conaclos)
-
[useJsxKeyInIterable](https://biomejs.dev/linter/rules/use-jsx-key-in-iterable/)
no longer reports false positive when iterating on non-jsx items
([#​2590](https://togithub.com/biomejs/biome/issues/2590)).
The following snipet of code no longer triggers the rule:
```jsx
<>{data.reduce((total, next) => total + next, 0)}</>
```
Contributed by [@​dyc3](https://togithub.com/dyc3)
- Fix typo by renaming `useConsistentBuiltinInstatiation` to
`useConsistentBuiltinInstantiation`
Contributed by [@​minht11](https://togithub.com/minht11)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/BSStudio/bss-web-graphql-backend).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent c1b0113 commit 4b55c61Copy full SHA for 4b55c61
2 files changed
+37
-37
lines changed+36-36Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
45 |
| - | |
| 45 | + | |
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
|
0 commit comments