RSS Amplifier

Blog

Release notes from biome

github.comSource feed ↗10 posts

Live Last read · last published · next check

Latest posts

Biome CLI v2.5.11

2.5.11 Patch Changes #11499 9743d0c Thanks @scs0209 ! - Fixed #11496 : useValidAnchor now treats Astro JSX shorthand attributes like <a {href}> as a valid href . #11437 88f805e Thanks @Princesseuh ! - Fixed #9944 : adjacent elements inside an Astro expression now parse as an implicit fragment instead of raising an error. { options . map (() => < div /> < div /> ) } #11437 88f805e Thanks…

Biome CLI v2.5.10

2.5.10 Patch Changes #11403 8f7786f Thanks @Princesseuh ! - Fixed Astro rejecting JavaScript comments between attributes. < div /* block comment */ class = " something " ></ div > < Component /* c */ client:load /> #11403 8f7786f Thanks @Princesseuh ! - Fixed a bare < in Astro text being treated as the start of a tag, such as <p>5 < 6 and 7 > 6</p> . As in HTML, a < that cannot open a tag is text…

Biome CLI v2.5.9

2.5.9 Patch Changes #11321 41386f3 Thanks @dyc3 ! - Fixed #11315 : The CSS parser now recovers at declaration boundaries after bogus declarations, allowing subsequent valid declarations to be parsed. #11248 57b197e Thanks @yanthomasdev ! - Expanded the environment variable metadata used by biome rage to include BIOME_BINARY , BIOME_LOG_FILE , and RUST_BACKTRACE as well as reworded explanations for…

Biome CLI v2.5.8

2.5.8 Patch Changes #10710 0a0fbc1 Thanks @dyc3 ! - Added a new nursery rule useReactCompiler , which reports diagnostics from React Compiler lint mode. #11251 ea9dd8a Thanks @dyc3 ! - Improved performance of noImportCycles . #11247 52b44d6 Thanks @dyc3 ! - Added the nursery rule noSvelteLegacyConst , which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived() .…

Biome CLI v2.5.7

2.5.7 Patch Changes #10822 c171b3b Thanks @pkallos ! - Added the option ignoreIfStatements to useNullishCoalescing . Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b } ) and can rewrite them to ??= . When enabled, Biome ignores those if statements. #11136 e63354c Thanks @AkashNaickar ! - Added a new nursery rule noExtendNative , which reports extending…

Biome CLI v2.5.6

2.5.6 Patch Changes #11035 0e4b03b Thanks @ematipico ! - Fixed a performance regression in noMisusedPromises that caused type inference to run repeatedly while linting a file. #11043 22ec076 Thanks @denbezrukov ! - Fixed CSS formatting for multiline function arguments preceded by comments: .example { value: outer( 1, /* comment */ nested( - first, - second - ) + first, + second + ) ); } #11007…

Biome CLI v2.5.5

2.5.5 Patch Changes #10972 ab8c21b Thanks @ematipico ! - Fixed useExhaustiveSwitchCases for unions of bigint literals. The rule now reports missing bigint cases and compares bigint literals by value, including binary, octal, hexadecimal, and separator-containing spellings. For example, this switch now reports the missing 2n case: declare const value : 1n | 2n ; switch ( value ) { case 1n : break ;…

Biome CLI v2.5.4

2.5.4 Patch Changes #10665 55ff995 Thanks @dyc3 ! - Improved the performance of the HTML parser slightly in our synthetic benchmarks. #10894 f4fb10e Thanks @ematipico ! - Fixed #6392 : On-type formatting no longer moves comments before an if statement into its body. #10939 f2799db Thanks @Netail ! - Fixed #10930 : noLabelWithoutControl now correctly detects text interpolation in Astro, Svelte &…

Biome CLI v2.5.3

2.5.3 Patch Changes #10815 86613d5 Thanks @WaterWhisperer ! - Fixed a parser panic reported in #10708 : Biome now recovers when unsupported CSS Modules @value rules or scoped @keyframes names end at EOF. #10534 da9b403 Thanks @Mokto ! - Fixed noUnusedVariables false positives in Svelte files: Svelte store subscriptions ( $store references in templates now keep the underlying store binding from…

Biome CLI v2.5.2

2.5.2 Patch Changes #10595 f458028 Thanks @pkallos ! - Added the option ignoreBooleanCoercion to useNullishCoalescing . When enabled, Biome ignores || and ||= used inside a Boolean() call, where coalescing on falsy values is intentional. #10798 4a32b63 Thanks @pkallos ! - Added the option ignorePrimitives to useNullishCoalescing . When enabled, Biome ignores || , ||= , and ternary expressions…