This week's releases aren't chasing AI headlines — they're fixing the friction that slows down every serious codebase. Biome landed formatter options that kill entire categories of config debates, Go 1.26 automated the idiom modernization work nobody wants to do manually, and Astral shipped a type checker that makes Pyright feel like it's running on a dial-up connection. Here's what actually matters.

Biome v1 Ships Formatter Options and Lint Command

Biome 1.0 adds JSX quote style control, arrow function parentheses configuration, and a dedicated biome lint command that runs independently from formatting. The practical effect: you can now run lint-only checks in CI without triggering formatter output, and you can stop reaching for .prettierrc overrides just to handle quote and paren style preferences.

The extends field for config composition is the quiet win here. Multi-team monorepos have historically fought with shared Biome configs because one team's formatting rules bled into another's. Composable configs solve that without duplicating configuration files.

Breaking CLI changes shipped with this release. Read the changelog before upgrading.