EXE
WinGet
Biome
BiomeJS · 2.3.6 · arm64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Portable application — no installation required. Run the executable directly from any location.
File Identity
Filename
biome-win32-arm64.exe
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
BiomeJS.Biome
Version
2.3.6
Description
Biome is a toolchain for web projects, aimed at providing functionalities to maintain them. It offers a formatter and linter, usable via CLI and LSP.
License
Apache-2.0
Homepage
https://biomejs.dev/
Installer URL
https://github.com/biomejs/biome/releases/download/@biomejs/biome@2.3.6/biome-win32-arm64.exe
Upgrade Behavior
install(Install over existing)
Release Notes
2.3.6
Patch Changes
- #8100 82b9a8e Thanks @Netail! - Added the nursery rule useFind. Enforce the use of Array.prototype.find() over Array.prototype.filter() followed by [0] when looking for a single result.
Invalid:
[1, 2, 3].filter((x) => x > 1)[0];
[1, 2, 3].filter((x) => x > 1).at(0);
- #8118 dbc7021 Thanks @hirokiokada77! - Fixed #8117: useValidLang now accepts valid BCP 47 language tags with script subtags.
Valid:
<html lang="zh-Hans-CN"></html>
- #7672 f1d5725 Thanks @Netail! -…