EXE
WinGet
Biome
BiomeJS · 2.3.15 · 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.3.15
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.15/biome-win32-x64.exe
Upgrade Behavior
install(Install over existing)
Release Notes
2.3.15
Patch Changes
- #9019 043b67c Thanks @dyc3! - Added the lint rule noNestedPromises. This rule detects nested .then() or .catch() calls that could be refactored into flat promise chains.
// Invalid: nested promise that can be flattened
doThing().then(function () {
return doOtherThing().then(console.log);
});
// Valid: flat promise chain
doThing()
.then(() => doOtherThing())
.then(console.log);
The rule intelligently allows nesting when the inner callback references…