EXE
WinGet
Biome
BiomeJS · 2.2.6 · x64
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-x64.exe
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
BiomeJS.Biome
Version
2.2.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.2.6/biome-win32-x64.exe
Upgrade Behavior
install(Install over existing)
Release Notes
2.2.6
Patch Changes
- #7071 a8e7301 Thanks @ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.
This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.
Invalid:
// Top-level hook call is invalid.
const state = useStore({ count: 0 });
function helper() {
// Calling a hook in a…