Download Latest Version Biome CLI v2.3.3_ source code.tar.gz (7.8 MB)
Email in envelope

Get an email when there's a new version of Biome

Home / @biomejs_biome@2.3.2
Name Modified Size InfoDownloads / Week
Parent folder
biome-darwin-arm64 2025-10-28 37.8 MB
biome-darwin-x64 2025-10-28 40.4 MB
biome-linux-arm64 2025-10-28 38.9 MB
biome-linux-arm64-musl 2025-10-28 37.4 MB
biome-linux-x64 2025-10-28 43.4 MB
biome-linux-x64-musl 2025-10-28 43.4 MB
biome-win32-arm64.exe 2025-10-28 44.7 MB
biome-win32-x64.exe 2025-10-28 54.6 MB
Biome CLI v2.3.2_ source code.tar.gz 2025-10-28 7.8 MB
Biome CLI v2.3.2_ source code.zip 2025-10-28 16.0 MB
README.md 2025-10-28 5.0 kB
Totals: 11 Items   364.3 MB 3

2.3.2

Patch Changes

Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line. \ Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

Example

ts // The following code used to error if the `+` operators were at the start of lines (as opposed to the end). // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it. const reallyLongStringThatShouldNotError = "Lorem ipsum dolor sit amet consectetur adipiscing elit." + "Quisque faucibus ex sapien vitae pellentesque sem placerat." + "In id cursus mi pretium tellus duis convallis." + "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";

What's Changed

Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.3.1...@biomejs/biome@2.3.2

Source: README.md, updated 2025-10-28