-
-
Notifications
You must be signed in to change notification settings - Fork 741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update dependency @biomejs/biome to v1.4.0 #5288
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
from
November 7, 2023 01:05
7e63e05
to
244be1d
Compare
renovate
bot
changed the title
chore(deps): update dependency @biomejs/biome to v1.3.1
chore(deps): update dependency @biomejs/biome to v1.3.2
Nov 7, 2023
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
from
November 7, 2023 08:21
244be1d
to
3a0eb22
Compare
renovate
bot
changed the title
chore(deps): update dependency @biomejs/biome to v1.3.2
chore(deps): update dependency @biomejs/biome to v1.3.3
Nov 7, 2023
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
23 times, most recently
from
November 13, 2023 06:43
2a41e7e
to
6c0bb35
Compare
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
from
November 27, 2023 12:19
0ef14b2
to
29493c4
Compare
renovate
bot
changed the title
chore(deps): update dependency @biomejs/biome to v1.3.3
chore(deps): update dependency @biomejs/biome to v1.3.3 - autoclosed
Nov 27, 2023
auto-merge was automatically disabled
November 27, 2023 12:44
Pull request was closed
renovate
bot
changed the title
chore(deps): update dependency @biomejs/biome to v1.3.3 - autoclosed
chore(deps): update dependency @biomejs/biome to v1.3.3
Nov 27, 2023
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
from
November 27, 2023 17:53
29493c4
to
79cffb4
Compare
renovate
bot
changed the title
chore(deps): update dependency @biomejs/biome to v1.3.3
chore(deps): update dependency @biomejs/biome to v1.4.0
Nov 27, 2023
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
2 times, most recently
from
November 27, 2023 22:59
ad0b437
to
4974dc2
Compare
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
2 times, most recently
from
November 28, 2023 03:07
7525c03
to
10a05ac
Compare
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
3 times, most recently
from
November 28, 2023 09:03
36270c1
to
a1cea4d
Compare
renovate
bot
force-pushed
the
renovate/biomejs-biome-1.x
branch
from
November 28, 2023 09:05
a1cea4d
to
990a816
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.3.3
->1.4.0
Release Notes
biomejs/biome (@biomejs/biome)
v1.4.0
Compare Source
CLI
Remove the CLI options from the
lsp-proxy
, as they were never meant to be passed to that command. Contributed by @ematipicoAdd option
--config-path
tolsp-proxy
andstart
commands. It's now possible to tell the Daemon server to loadbiome.json
from a custom path. Contributed by @ematipicoAdd new
--diagnostic-level
option to let users control the level of diagnostics printed by the CLI. Possible values are:"info"
,"warn"
,"hint"
. Contributed by @simonxabrisAdd option
--line-feed
to theformat
command. Contributed by @SuperchupuDevAdd option
--bracket-same-line
to theformat
command. Contributed by @faultyserveAdd option
--bracket-spacing
to theformat
command. Contributed by @faultyserveBug fixes
format
, now it returns a non-zero exit code when if there pending diffs. Contributed by @ematipicoConfiguration
formatter.lineFeed
. Contributed by @SuperchupuDevjavascript.formatter.bracketSameLine
. Contributed by @faultyservejavascript.formatter.bracketSpacing
. Contributed by @faultyserveFormatter
New features
--line-ending
. This option allows changing the type of line endings. Contributed by @SuperchupuDev--bracket-spacing
to the formatter. This option allows you to control whether spaces are inserted around the brackets of object literals. #627. Contributed by @faultyserver--bracket-same-line
to the formatter. This option allows you to control whether spaces are inserted around the brackets of object literals. #627. Contributed by @faultyserverBug fixes
Fix #832, the formatter no longer keeps an unnecessary trailing comma in type parameter lists. Contributed by @Conaclos
Fix #301, the formatter should not break before the
in
keyword. Contributed by @ematipicoLinter
Promoted rules
The following rules are now recommended:
The following rules are now deprecated:
The rule is replaced by correctness/noInvalidNewBuiltin
New features
Add noDefaultExport which disallows
export default
. Contributed by @ConaclosAdd noAriaHiddenOnFocusable which reports hidden and focusable elements. Contributed by @vasucp1207
Add noImplicitAnyLet that reports variables declared with
let
and without initialization and type annotation. Contributed by @TaKO8Ki and @b4s36t4Add useAwait that reports
async
functions that don't use anawait
expression.Add useValidAriaRole. Contributed by @vasucp1207
Add useRegexLiterals that suggests turning call to the regex constructor into regex literals. COntributed by @Yuiki
Enhancements
Bug fixes
Fix #639 by ignoring unused TypeScript's mapped key. Contributed by @Conaclos
Fix #565 by handling several
infer
with the same name in extends clauses of TypeScript's conditional types. Contributed by @ConaclosFix #653. noUnusedImports now correctly removes the entire line where the unused
import
is. Contributed by @ConaclosFix #607
useExhaustiveDependencies
, ignore optional chaining, Contributed by @msdlisperFix #676, by using the correct node for the
"noreferrer"
when applying the code action. Contributed by @ematipicoFix #455. The CLI can now print complex emojis to the console correctly.
Fix #727. noInferrableTypes now correctly keeps type annotations when the initialization expression is
null
. Contributed by @ConaclosFix #784, noSvgWithoutTitle fixes false-positives to
aria-label
and reports svg's role attribute is implicit. Contributed by @unvalleyFix #834 that made noUselessLoneBlockStatements reports block statements of switch clauses. Contributed by @vasucp1207
Fix #783 that made noUselessLoneBlockStatements reports block statements of
try-catch
structures. Contributed by @hougesenFix #69 that made correctness/noUnnecessaryContinue incorrectly reports a
continue
used to break a switch clause. Contributed by @TaKO8KiFix #664 by improving the diagnostic of style/useNamingConvention when double capital are detected in strict camel case mode. Contributed by @vasucp1207
Fix #643 that erroneously parsed the option of complexity/useExhaustiveDependencies. Contributed by @arendjr
Parser
Bug fixes
<const T,>() => {}
as a JSX tag instead of an arrow function when both TypeScript and JSX are enabled.VSCode
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.
This PR has been generated by Mend Renovate. View repository job log here.