chore(deps): update dependency @biomejs/biome to v2.2.3 #29
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:
2.1.2
->2.2.3
Release Notes
biomejs/biome (@biomejs/biome)
v2.2.3
Compare Source
Patch Changes
#7353
4d2b719
Thanks @JeetuSuthar! - Fixed #7340: The linter now allows thenavigation
property for view-transition in CSS.Previously, the linter incorrectly flagged
navigation: auto
as an unknown property. This fix addsnavigation
to the list of known CSS properties, following the CSS View Transitions spec.#7275
560de1b
Thanks @arendjr! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.#7358
963a246
Thanks @ematipico! - Fixed #7085, now the rulenoDescendingSpecificity
correctly calculates the specificity of selectors when they are included inside a media query.#7387
923674d
Thanks @qraqras! - Fixed #7381, now theuseOptionalChain
rule recognizes optional chaining using Yoda expressions (e.g.,undefined !== foo && foo.bar
).#7316
f9636d5
Thanks @Conaclos! - Fixed #7289. The ruleuseImportType
now inlinesimport type
intoimport { type }
when thestyle
option is set toinlineType
.Example:
#7350
bb4d407
Thanks @siketyan! - Fixed #7261: two characters・
(KATAKANA MIDDLE DOT, U+30FB) and・
(HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.#7377
811f47b
Thanks @ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.#7245
fad34b9
Thanks @kedevked! - Added the new lint ruleuseConsistentArrowReturn
.This rule enforces a consistent return style for arrow functions.
Invalid
This rule is a port of ESLint's arrow-body-style rule.
#7370
e8032dd
Thanks @fireairforce! - Support dynamicimport defer
andimport source
. The syntax looks like:#7369
b1f8cbd
Thanks @siketyan! - Range suppressions are now supported for Grit plugins.For JavaScript, you can suppress a plugin as follows:
For CSS, you can suppress a plugin as follows:
#7384
099507e
Thanks @ematipico! - Reduced the severity of certain diagnostics emitted when Biome deserializes the configuration files.Now these diagnostics are emitted as
Information
severity, which means that they won't interfere when running commands with--error-on-warnings
#7302
2af2380
Thanks @unvalley! - Fixed #7301:useReadonlyClassProperties
now correctly skips JavaScript files.#7288
94d85f8
Thanks @ThiefMaster! - Fixed #7286. Files are now formatted with JSX behavior whenjavascript.parser.jsxEverywhere
is explicitly set.Previously, this flag was only used for parsing, but not for formatting, which resulted in incorrect formatting of conditional expressions when JSX syntax is used in
.js
files.#7311
62154b9
Thanks @qraqras! - Added the new nursery rulenoUselessCatchBinding
. This rule disallows unnecessary catch bindings.#7349
45c1dfe
Thanks @ematipico! - Fixed #4298. Biome now correctly formats CSS declarations when it contains one single value:#7295
7638e84
Thanks @ematipico! - Fixed #7130. Removed the emission of a false-positive diagnostic. Biome no longer emits the following diagnostic:#7377
811f47b
Thanks @ematipico! - Fixed #7371 where the Biome Language Server didn't correctly recompute the diagnostics when updating a nested configuration file.#7348
ac27fc5
Thanks @ematipico! - Fixed #7079. Now the ruleuseSemanticElements
doesn't trigger components and custom elements.#7389
ab06a7e
Thanks @Conaclos! - Fixed #7344.useNamingConvention
no longer reports interfaces defined in global declarations.Interfaces declared in global declarations augment existing interfaces.
Thus, they must be ignored.
In the following example,
useNamingConvention
reportedHTMLElement
.It is now ignored.
#7315
4a2bd2f
Thanks @vladimir-ivanov! - Fixed #7310:useReadonlyClassProperties
correctly handles nested assignments, avoiding false positives when a class property is assigned within another assignment expression.Example of code that previously triggered a false positive but is now correctly ignored:
v2.2.2
Compare Source
Patch Changes
#7266
b270bb5
Thanks @ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.#7281
6436180
Thanks @ematipico! - Fixed an issue where the functionscanProject
wouldn't work as expected.#7285
1511d0c
Thanks @rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.#7249
dff85c0
Thanks @ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.#7266
b270bb5
Thanks @ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.#7209
679b70e
Thanks @patrickshipe! - Resolved an overcorrection inuseImportExtensions
when importing explicit index files.Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.
Example
#7270
953f9c6
Thanks @arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.#7234
b7aa111
Thanks @JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.
#7283
0b07f45
Thanks @ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path
.#7239
1d643d8
Thanks @minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/js
and.svelte.spec.ts/js
files.#7264
62fdbc8
Thanks @ematipico! - Fixed a regression where when using--log-kind-pretty
wasn't working anymore as expected.#7244
660031b
Thanks @JeetuSuthar! - Fixed #7225: ThenoExtraBooleanCast
rule now preserves parentheses when removingBoolean
calls inside negations.#7298
46a8e93
Thanks @unvalley! - Fixed #6695:useNamingConvention
now correctly reports TypeScript parameter properties with modifiers.Previously, constructor parameter properties with modifiers like
private
orreadonly
were not checked against naming conventions. These properties are now treated consistently with regular class properties.v2.2.0
Compare Source
Minor Changes
#5506
1f8755b
Thanks @sakai-ast! - ThenoRestrictedImports
rule has been enhanced with a newpatterns
option. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under
import-foo/
except forimport-foo/baz
.Invalid examples
Valid examples
Additionally, the
patterns
option introducesimportNamePattern
to restrict specific import names using regular expressions.The following example restricts the import names that match
x
,y
orz
letters from modules underimport-foo/
.Invalid examples
Valid examples
Furthermore, you can use the
invertImportNamePattern
boolean option to reverse this logic. When set to true, only the import names that match theimportNamePattern
will be allowed. The following configuration only allows the import names that matchx
,y
orz
letters from modules underimport-foo/
.Invalid examples
Valid examples
#6506
90c5d6b
Thanks @nazarhussain! - Allow customization of the sort order for different sorting actions. These actions now support a sort option:assist/source/useSortedKeys
now has asortOrder
optionassist/source/useSortedAttributes
now has asortOrder
optionassist/source/organizeImports
now has anidentifierOrder
optionFor each of these options, the supported values are the same:
natural
. Compares two strings using a natural ASCII order. Uppercase letters come first (e.g.A < a < B < b
) and number are compared in a human way (e.g.9
<10
). This is the default value.lexicographic
. Strings are ordered lexicographically by their byte values. This orders Unicode code points based on their positions in the code charts. This is not necessarily the same as “alphabetical” order, which varies by language and locale.#7159
df3afdf
Thanks @ematipico! - Added the new ruleuseBiomeIgnoreFolder
. Since v2.2, Biome correctly prevents the indexing and crawling of folders.However, the correct pattern has changed. This rule attempts to detect incorrect usage, and promote the new pattern:
#6989
85b1128
Thanks @arendjr! - Fixed minor inconsistencies in howfiles.includes
was being handled.Previously, Biome sometimes failed to properly ignore the contents of a folder if you didn't specify the
/**
at the end of a glob pattern. This was unfortunate, because it meant we still had to traverse the folder and then apply the glob to every entry inside it.This is no longer an issue and we now recommend to ignore folders without using the
/**
suffix.#7118
a78e878
Thanks @avshalomt2! - Added support for.graphqls
files. Biome can now format and lint GraphQL files that have the extension.graphqls
#6159
f02a296
Thanks @bavalpey! - Added a new option to Biome's JavaScript formatter,javascript.formatter.operatorLinebreak
, to configure whether long lines should be broken before or after binary operators.For example, the following configuration:
Will cause this JavaScript file:
to be formatted like this:
#7137
a653a0f
Thanks @ematipico! - Promoted multiple lint rules from nursery to stable groups and renamed several rules for consistency.Promoted rules
The following rules have been promoted from nursery to stable groups:
CSS
noImportantStyles
to thecomplexity
group.noUnknownAtRules
to thesuspicious
group.GraphQL
useGraphqlNamedOperations
to thecorrectness
group.useGraphqlNamingConvention
to thestyle
group.JavaScript/TypeScript
noExcessiveLinesPerFunction
to thecomplexity
group.noImplicitCoercions
to thecomplexity
group.useIndexOf
to thecomplexity
group.noGlobalDirnameFilename
to thecorrectness
group.noNestedComponentDefinitions
to thecorrectness
group.noProcessGlobal
to thecorrectness
group.noReactPropAssignments
to thecorrectness
group.noRestrictedElements
to thecorrectness
group.noSolidDestructuredProps
to thecorrectness
group.useJsonImportAttributes
to thecorrectness
group.useParseIntRadix
to thecorrectness
group.useSingleJsDocAsterisk
to thecorrectness
group.useUniqueElementIds
to thecorrectness
group.noAwaitInLoops
to theperformance
group.noUnwantedPolyfillio
to theperformance
group.useGoogleFontPreconnect
to theperformance
group.useSolidForComponent
to theperformance
group.noMagicNumbers
to thestyle
group.useConsistentObjectDefinitions
to thestyle
group.useExportsLast
to thestyle
group.useGroupedAccessorPairs
to thestyle
group.useNumericSeparators
to thestyle
group.useObjectSpread
to thestyle
group.useReadonlyClassProperties
to thestyle
group.useSymbolDescription
to thestyle
group.useUnifiedTypeSignatures
to thestyle
group.noBitwiseOperators
to thesuspicious
group.noConstantBinaryExpressions
to thesuspicious
group.noTsIgnore
to thesuspicious
group.noUnassignedVariables
to thesuspicious
group.noUselessRegexBackrefs
to thesuspicious
group.noUselessStringEscapes
to thesuspicious
group.useConsistentIterableCallbackReturnValues
to thesuspicious
group.useStaticResponseMethods
to thesuspicious
group.Renamed rules
The following rules have been renamed during promotion. The migration tool will automatically update your configuration:
noAwaitInLoop
tonoAwaitInLoops
.noConstantBinaryExpression
tonoConstantBinaryExpressions
.noDestructuredProps
tonoSolidDestructuredProps
.noImplicitCoercion
tonoImplicitCoercions
.noReactPropAssign
tonoReactPropAssignments
.noUnknownAtRule
tonoUnknownAtRules
.noUselessBackrefInRegex
tonoUselessRegexBackrefs
.useAdjacentGetterSetter
touseGroupedAccessorPairs
.useConsistentObjectDefinition
touseConsistentObjectDefinitions
.useConsistentResponse
touseStaticResponseMethods
.useForComponent
touseSolidForComponent
.useJsonImportAttribute
touseJsonImportAttributes
.useNamedOperation
touseGraphqlNamedOperations
.useNamingConvention
touseGraphqlNamingConvention
.useUnifiedTypeSignature
touseUnifiedTypeSignatures
.Configuration files using the old rule names will need to be updated. Use the migration tool to automatically update your configuration:
#7159
df3afdf
Thanks @ematipico! - Added the new rulenoBiomeFirstException
. This rule prevents the incorrect usage of patterns insidefiles.includes
.This rule catches if the first element of the array contains
!
. This mistake will cause Biome to analyze no files:#6923
0589f08
Thanks @ptkagori! - Added Qwik Domain to BiomeThis release introduces Qwik domain support in Biome, enabling Qwik developers to use Biome as a linter and formatter for their projects.
useJsxKeyInIterable
noReactSpecificProps
#6989
85b1128
Thanks @arendjr! - Fixed #6965: Implemented smarter scanner for project rules.Previously, if project rules were enabled, Biome's scanner would scan all dependencies regardless of whether they were used by/reachable from source files or not. While this worked for a first version, it was far from optimal.
The new scanner first scans everything listed under the
files.includes
setting, and then descends into the dependencies that were discovered there, including transitive dependencies. This has three main advantages:vcs.useIgnoreFile
is enabled,.gitignore
gets respected as well. Assuming you have folders such asbuild/
ordist/
configured there, those will be automatically ignored by the scanner.The change in the scanner also has a more nuanced impact: Previously, if you used
files.includes
to ignore a file in an included folder, the scanner would still index this file. Now the file is fully ignored, unless you import it.As a user you should notice better scanner performance (if you have project rules enabled), and hopefully you need to worry less about configuring
files.experimentalScannerIgnores
. Eventually our goal is still to deprecate that setting, so if you're using it today, we encourage you to see which ignores are still necessary there, and whether you can achieve the same effect by ignoring paths usingfiles.includes
instead.None of these changes affect the scanner if no project rules are enabled.
#6731
d6a05b5
Thanks @ematipico! - The--reporter=summary
has been greatly enhanced. It now shows the list of files that contains violations, the files shown are clickable and can be opened from the editor.Below an example of the new version:
#6896
527db7f
Thanks @ematipico! - Added new functions to the@biomejs/wasm-*
packages:fileExists
: returns whether the input file exists in the workspace.isPathIgnored
: returns whether the input path is ignored.updateModuleGraph
: updates the internal module graph of the input path.getModuleGraph
: it returns a serialized version of the internal module graph.scanProject
: scans the files and directories in the project to build the internal module graph.#6398
d1a315d
Thanks @josh-! - Added support for tracking stable results in user-provided React hooks that return objects touseExhaustiveDependencies
to compliment existing support for array return values. For example:This will allow the following to be validated:
#7201
2afaa49
Thanks @Conaclos! - Implemented #7174.useConst
no longer reports variables that are read before being written.Previously,
useConst
reported uninitialised variables that were read in an inner function before being written, as shown in the following example:This can produce false positives in the case where
f
is called beforev
has been written, as in the following code:Although this is an expected behavior of the original implementation, we consider it problematic since the rule’s fix is marked as safe.
To avoid false positives like this, the rule now ignores the previous examples.
However, this has the disadvantage of resulting in false negatives, such as not reporting the first example.
Patch Changes
#7156
137d111
Thanks @ematipico! - Fixed #7152. Now the rulenoDuplicateFontNames
correctly detects font names with spaces e.g.Liberation Mono
. The diagnostic of the rule now points to the first instances of the repeated font.The following example doesn't trigger the rule anymore:
#6907
7331bb9
Thanks @ematipico! - Added a new experimental option that allows parsing of.html
files that contain interpolation syntax.#7124
3f436b8
Thanks @Jayllyz! - Added the ruleuseMaxParams
.This rule enforces a maximum number of parameters for functions to improve code readability and maintainability. Functions with many parameters are difficult to read, understand, and maintain because they require memorizing parameter order and types.
#7161
1a14a59
Thanks @ematipico! - Fixed #7160. Now Biome correctly computes ignored files when usingformatter.includes
,linter.includes
andassist.includes
inside nested configurations that use"extends": "//"
.#7081
a081bbe
Thanks @Jayllyz! - Added the rulenoNextAsyncClientComponent
.This rule prevents the use of async functions for client components in Next.js applications. Client components marked with "use client" directive should not be async as this can cause hydration mismatches, break component rendering lifecycle, and lead to unexpected behavior with React's concurrent features.
#7171
5241690
Thanks @siketyan! - Fixed #7162: ThenoUndeclaredDependencies
rule now considers a type-only import as a dev dependency.For example, the following code is no longer reported:
package.json
:foo.ts
:Note that you still need to declare the package in the
devDependencies
section inpackage.json
.v2.1.4
Compare Source
Patch Changes
#7121
b9642ab
Thanks @arendjr! - Fixed #7111: Imported symbols using aliases are now correctly recognised.#7103
80515ec
Thanks @omasakun! - Fixed #6933 and #6994.When the values of private member assignment expressions, increment expressions, etc. are used, those private members are no longer marked as unused.
#6887
0cc38f5
Thanks @ptkagori! - Added thenoQwikUseVisibleTask
rule to Qwik.This rule is intended for use in Qwik applications to warn about the use of
useVisibleTask$()
functions which require careful consideration before use.Invalid:
Valid:
#7084
50ca155
Thanks @ematipico! - Added the new nursery rulenoUnnecessararyConditions
, which detects whenever some conditions don'tchange during the life cycle of the program, and truthy or false, hence deemed redundant.
For example, the following snippets will trigger the rule:
#6887
0cc38f5
Thanks @ptkagori! - Added theuseImageSize
rule to Biome.The
useImageSize
rule enforces the use of width and height attributes on<img>
elements for performance reasons. This rule is intended to prevent layout shifts and improve Core Web Vitals by ensuring images have explicit dimensions.Invalid:
Valid:
#6887
0cc38f5
Thanks @ptkagori! - Added theuseAnchorHref
rule to Biome.The
useAnchorHref
rule enforces the presence of anhref
attribute on<a>
elements in JSX. This rule is intended to ensure that anchor elements are always valid and accessible.Invalid:
Valid:
#7100
29fcb05
Thanks @Jayllyz! - Added the rulenoNonNullAssertedOptionalChain
.This rule prevents the use of non-null assertions (
!
) immediately after optional chaining expressions (?.
). Optional chaining is designed to safely handle nullable values by returningundefined
when the chain encountersnull
orundefined
. Using a non-null assertion defeats this purpose and can lead to runtime errors.#7129
9f4538a
Thanks @drwpow! - Removed option, combobox, listbox roles from useSemanticElements suggestions#7106
236deaa
Thanks @arendjr! - Fixed #6985: Inference of return types no longer mistakenly picks up return types of nested functions.#7102
d3118c6
Thanks @omasakun! - Fixed #7101:noUnusedPrivateClassMembers
now handles members declared as part of constructor arguments:private
modifier and makes it a plain method argument.noUnusedFunctionParameter
.#7104
5395297
Thanks @harxki! - Reverting to prevent regressions around ref handling#7143
1a6933a
Thanks @siketyan! - Fixed #6799: ThenoImportCycles
rule now ignores type-only imports if the newignoreTypes
option is enabled (enabled by default).#7099
6cc84cb
Thanks @arendjr! - Fixed #7062: Biome now correctly considers extended configs when determining the mode for the scanner.#6887
0cc38f5
Thanks @ptkagori! - Added theuseQwikClasslist
rule to Biome.This rule is intended for use in Qwik applications to encourage the use of the built-in
class
prop (which accepts a string, object, or array) instead of theclassnames
utility library.Invalid:
Valid:
#7019
57c15e6
Thanks @fireairforce! - Added support in the JS parser forimport source
(a stage3 proposal). The syntax looks like:#7053
655049e
Thanks @jakeleventhal! - Added theuseConsistentTypeDefinitions
rule.This rule enforces consistent usage of either
interface
ortype
for object type definitions in TypeScript.The rule accepts an option to specify the preferred style:
interface
(default): Prefer usinginterface
for object type definitionstype
: Prefer usingtype
for object type definitionsExamples:
The rule will automatically fix simple cases where conversion is straightforward.
v2.1.3
Compare Source
Patch Changes
#7057
634a667
Thanks @mdevils! - Added the rulenoVueReservedKeys
, which prevents the use of reserved Vue keys.It prevents the use of Vue reserved keys such as those starting with
# @​biomejs/biome (like
$el,
$data,
$props) and keys starting with
_` in data properties, which can cause conflicts and unexpected behavior in Vue components.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 was generated by Mend Renovate. View the repository job log.