Changelog

biomejs/biome · · 3 commits

YAML support lands; Markdown parser tightened

Biome adds experimental YAML configuration/formatting support and hardens Markdown list parsing with new invariants.

Experimental YAML formatting support added (ematipicoa299852)

Biome now has YAML-specific configuration plumbing and formatter test coverage, including CLI format harness coverage and service/file-handler wiring. The formatter is still marked disabled by default in the new config types, but this lays the groundwork for first-class YAML formatting support.

Markdown list parsing gets stricter invariants (jfmcdowell52bb565)

The Markdown parser was updated to better handle list continuation indentation after quote prefixes, reducing edge-case misparses in nested list/blockquote structures. New CST invariant tests were added to lock in the expected list-item structure and prevent regressions.

Other misc changes

  • Governance update broadening reimbursable Biome-related travel/expense cases (Conaclos13cd12b)
  • Dependency and test fixture updates for YAML support
  • Misc formatter verbatim and snapshot adjustments