chore(deps): bump the biome group with 2 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(3 months ago)
(3 months ago)
dependencies javascript
Bumps the biome group with 2 updates: @biomejs/wasm-nodejs and @biomejs/biome.
Updates @biomejs/wasm-nodejs
from 2.0.5 to 2.0.6
Release notes
Sourced from @biomejs/wasm-nodejs
's releases.
Biome CLI v2.0.6
2.0.6
Patch Changes
#6557
fd68458
Thanks@ematipico
! - Fixed a bug where Biome didn't provide all the available code actions when requested by the editor.#6511
72623fa
Thanks@Conaclos
! - Fixed #6492. TheorganizeImports
assist action no longer duplicates a comment at the start of the file when:BLANK_LINE:
precedes the first import group.#6557
fd68458
Thanks@ematipico
! - Fixed #6287 where Biome Language Server didn't adhere to thesettings.requireConfiguration
option when pulling diagnostics and code actions. Note that for this configuration be correctly applied, your editor must support dynamic registration capabilities.#6551
0b63b1d
Thanks@Conaclos
! - Fixed #6536.useSortedKeys
no longer panics in some edge cases where object spreads are involved.#6503
9a8fe0f
Thanks@ematipico
! - Fixed #6482 where nursery rules that belonged to a domain were incorrectly enabled.#6565
e85761c
Thanks@daivinhtran
! - Fixed #4677: Now thenoUnusedImports
rule won't produce diagnostics for types used in JSDoc comment of exports.#6166
b8cbd83
Thanks@mehm8128
! - Added the nursery rule noExcessiveLinesPerFunction. This rule restrict a maximum number of lines of code in a function body.The following code is now reported as invalid when the limit of maximum lines is set to 2:
function foo() { const x = 0; const y = 1; const z = 2; }
The following code is now reported as valid when the limit of maximum lines is set to 3:
const bar = () => { const x = 0; const z = 2; };
#6553
5f42630
Thanks@denbezrukov
! - Fixed #6547. Now the Biome CSS parser correctly parses@starting-style
when it's used inside other at-rules. The following example doesn't raise an error anymore:@layer my-demo-layer { @starting-style { div.showing { background-color: red;
... (truncated)
Commits
a69bbe8
ci: release (#6507)e85761c
fix(biome_js_analyze): add JsExport to be walked by JsDocTypeCollectorVisitio...5f42630
fix(css_parser): use a conditional block for the@starting-style
at-rule (#6553)fd68458
fix(lsp): require config and code actions (#6557)4869619
fix(docs): mdx printing and missed diagnostic (#6561)f28b075
fix(biome_js_analyze): produce diagnogstics for top-level useless fragment th...7a56288
fix(lint/complexity/noUselessFragments): fix Fragments containing HTML entiti...6a24bd9
chore: link packages differently (#6558)6d8a6b9
fix(cli): replacefiles.ignore
withfiles.includes
in the error message (...b866409
refactor: attach rule source kind to rule source (#6556)- Additional commits viewable in compare view
Updates @biomejs/biome
from 2.0.5 to 2.0.6
Release notes
Sourced from @biomejs/biome
's releases.
Biome CLI v2.0.6
2.0.6
Patch Changes
#6557
fd68458
Thanks@ematipico
! - Fixed a bug where Biome didn't provide all the available code actions when requested by the editor.#6511
72623fa
Thanks@Conaclos
! - Fixed #6492. TheorganizeImports
assist action no longer duplicates a comment at the start of the file when:BLANK_LINE:
precedes the first import group.#6557
fd68458
Thanks@ematipico
! - Fixed #6287 where Biome Language Server didn't adhere to thesettings.requireConfiguration
option when pulling diagnostics and code actions. Note that for this configuration be correctly applied, your editor must support dynamic registration capabilities.#6551
0b63b1d
Thanks@Conaclos
! - Fixed #6536.useSortedKeys
no longer panics in some edge cases where object spreads are involved.#6503
9a8fe0f
Thanks@ematipico
! - Fixed #6482 where nursery rules that belonged to a domain were incorrectly enabled.#6565
e85761c
Thanks@daivinhtran
! - Fixed #4677: Now thenoUnusedImports
rule won't produce diagnostics for types used in JSDoc comment of exports.#6166
b8cbd83
Thanks@mehm8128
! - Added the nursery rule noExcessiveLinesPerFunction. This rule restrict a maximum number of lines of code in a function body.The following code is now reported as invalid when the limit of maximum lines is set to 2:
function foo() { const x = 0; const y = 1; const z = 2; }
The following code is now reported as valid when the limit of maximum lines is set to 3:
const bar = () => { const x = 0; const z = 2; };
#6553
5f42630
Thanks@denbezrukov
! - Fixed #6547. Now the Biome CSS parser correctly parses@starting-style
when it's used inside other at-rules. The following example doesn't raise an error anymore:@layer my-demo-layer { @starting-style { div.showing { background-color: red;
... (truncated)
Changelog
Sourced from @biomejs/biome
's changelog.
2.0.6
Patch Changes
#6557
fd68458
Thanks@ematipico
! - Fixed a bug where Biome didn't provide all the available code actions when requested by the editor.#6511
72623fa
Thanks@Conaclos
! - Fixed #6492. TheorganizeImports
assist action no longer duplicates a comment at the start of the file when:BLANK_LINE:
precedes the first import group.#6557
fd68458
Thanks@ematipico
! - Fixed #6287 where Biome Language Server didn't adhere to thesettings.requireConfiguration
option when pulling diagnostics and code actions. Note that for this configuration be correctly applied, your editor must support dynamic registration capabilities.#6551
0b63b1d
Thanks@Conaclos
! - Fixed #6536.useSortedKeys
no longer panics in some edge cases where object spreads are involved.#6503
9a8fe0f
Thanks@ematipico
! - Fixed #6482 where nursery rules that belonged to a domain were incorrectly enabled.#6565
e85761c
Thanks@daivinhtran
! - Fixed #4677: Now thenoUnusedImports
rule won't produce diagnostics for types used in JSDoc comment of exports.#6166
b8cbd83
Thanks@mehm8128
! - Added the nursery rule noExcessiveLinesPerFunction. This rule restrict a maximum number of lines of code in a function body.The following code is now reported as invalid when the limit of maximum lines is set to 2:
function foo() { const x = 0; const y = 1; const z = 2; }
The following code is now reported as valid when the limit of maximum lines is set to 3:
const bar = () => { const x = 0; const z = 2; };
#6553
5f42630
Thanks@denbezrukov
! - Fixed #6547. Now the Biome CSS parser correctly parses@starting-style
when it's used inside other at-rules. The following example doesn't raise an error anymore:@layer my-demo-layer { @starting-style { div.showing { background-color: red; } }
... (truncated)
Commits
a69bbe8
ci: release (#6507)6a24bd9
chore: link packages differently (#6558)f62e748
feat(lint): implementnoImplicitCoercion
rule (#6395)e128ea9
feat(lint): no-alert rule (#6355)5705f1a
feat(lint): implementuseUnifiedTypeSignature
rule (#6320)a3a3715
feat(linter): implement noUnassignedVariables rule (#6219)b8cbd83
feat(biome_js_analyze): implement noExcessiveLinesPerFunction (#6166)- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
2
+45
-45
Package Dependencies
Technical Details
ID: | 2390946 |
UUID: | 2625488355 |
Node ID: | PR_kwDODeqQrc6cfcXj |
Host: | GitHub |
Repository: | acacode/swagger-typescript-api |
Merge State: | Unknown |