Markdown parser now supports frontmatter blocks (
142b7fa)
Biome adds a new Markdown parser option to enable frontmatter parsing at the start of files, along with the syntax, lexer, parser, and formatter support needed to preserve it end-to-end. This unlocks proper handling of common doc formats that begin with YAML-style metadata.
Core analyzer settings were refactored around tracked functions (
66bc1ed)
The analyzer configuration and option plumbing were reworked to use thread-safe, tracked rule storage and to make option values Send + Sync. This is a substantial infrastructure change that touches service state, file handlers, and language-specific configuration paths, and it should improve correctness for shared configuration handling.
useStrictMode stops flagging Vue event handlers (
dec5a8f)
The JavaScript linter now skips Vue event-handler embeddings such as @click="count++" and v-on:click. This removes a false positive in a common Vue pattern.
