From 60b9ce443c3d853b83d338dbc09463c5943eef7f Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Mon, 16 Feb 2026 09:39:06 +0000 Subject: [PATCH] chore: update language support --- scripts/update-revision.sh | 2 +- .../docs/internals/language-support.mdx | 35 ++++++++++--------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/scripts/update-revision.sh b/scripts/update-revision.sh index 2a5c1b48e..86ae79986 100755 --- a/scripts/update-revision.sh +++ b/scripts/update-revision.sh @@ -16,7 +16,7 @@ short_rev=$(echo $new_rev | cut -c 1-7) jq ".devDependencies[\"@biomejs/wasm-web\"] = \"https://pkg.pr.new/biomejs/biome/@biomejs/wasm-web@$short_rev\"" package.json > package.json.tmp && mv package.json.tmp package.json # Install dependencies -pnpm install +pnpm install --no-frozen-lockfile # Update the rev values for the biome dependencies awk -v new_rev="$new_rev" '{gsub(/rev = "[^"]+"/, "rev = \"" new_rev "\""); print}' Cargo.toml >temp.toml && mv temp.toml Cargo.toml diff --git a/src/content/docs/internals/language-support.mdx b/src/content/docs/internals/language-support.mdx index c0c5deff9..cc5170894 100644 --- a/src/content/docs/internals/language-support.mdx +++ b/src/content/docs/internals/language-support.mdx @@ -9,23 +9,24 @@ Legend: - ⌛️: In progress - 🟡: Experimental -| Language | Parsing | Formatting | Linting | Plugin Support | -|----------------------------------------------------------|------------------------------------------------------|---------------------------------------------------------|---------------------------------------------------------|---------------------------------------------------------| -| [JavaScript](#javascript-support) | | | | | -| [TypeScript](#typescript-support) | | | | | -| JSX | | | | | -| TSX | | | | | -| JSON | | | | | -| JSONC | | | | | -| HTML* | | | | | -| [Vue](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | -| [Svelte](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | -| [Astro](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | -| CSS | ✅️ | ✅️ | ✅️ | | -| [YAML](https://github.com/biomejs/biome/issues/2365) | ⌛️ | 🚫 | 🚫 | 🚫 | -| GraphQL | ✅️ | ✅️ | ✅️ | 🚫 | -| [Markdown](https://github.com/biomejs/biome/issues/3718) | ⌛️ | 🚫 | 🚫 | 🚫 | -| GritQL | ✅️ | ✅️ | 🚫 | 🚫 | +| Language | Parsing | Formatting | Linting | Plugin Support | +|----------------------------------------------------------|------------------------------------------------------|------------------------------------------------------|---------------------------------------------------------|---------------------------------------------------------| +| [JavaScript](#javascript-support) | | | | | +| [TypeScript](#typescript-support) | | | | | +| JSX | | | | | +| TSX | | | | | +| JSON | | | | | +| JSONC | | | | | +| HTML* | | | | | +| [Vue](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | +| [Svelte](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | +| [Astro](#html-super-languages-support) | 🟡 | 🟡 | 🟡 | 🟡 | +| CSS | ✅️ | ✅️ | ✅️ | | +| SCSS | ⌛️ | ⌛️ | 🚫 | 🚫 | +| [YAML](https://github.com/biomejs/biome/issues/2365) | ⌛️ | ⌛️ | 🚫 | 🚫 | +| GraphQL | ✅️ | ✅️ | ✅️ | 🚫 | +| [Markdown](https://github.com/biomejs/biome/issues/3718) | ⌛️ | ⌛️ | 🚫 | 🚫 | +| GritQL | ✅️ | ✅️ | 🚫 | 🚫 | *\* currently requires [explicit opt-in](https://biomejs.dev/reference/configuration/#html)*