summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--biome.json18
-rw-r--r--packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro2
2 files changed, 12 insertions, 8 deletions
diff --git a/biome.json b/biome.json
index aed74ad49..fd35328f8 100644
--- a/biome.json
+++ b/biome.json
@@ -1,7 +1,14 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
"files": {
- "ignore": ["vendor", "dist/**"],
+ "ignore": [
+ "vendor",
+ "**/dist/**",
+ "**/smoke/**",
+ "**/fixtures/**",
+ "**/vendor/**",
+ "**/.vercel/**"
+ ],
"include": ["test/**", "e2e/**", "packages/**"]
},
"formatter": {
@@ -11,18 +18,15 @@
"ignore": [
"benchmark/projects/",
"benchmark/results/",
- "**/dist/**",
- "**/smoke/**",
- "**/fixtures/**",
- "**/vendor/**",
- "**/.vercel/**",
".changeset",
"pnpm-lock.yaml",
"package.json",
"*.astro"
]
},
- "organizeImports": { "enabled": true },
+ "organizeImports": {
+ "enabled": true
+ },
"linter": { "enabled": false },
"javascript": {
"formatter": {
diff --git a/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro b/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
index 225b8c103..49f378bc6 100644
--- a/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
+++ b/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
@@ -1,6 +1,6 @@
---
-import BlueButton from "../components/BlueButton.astro";
import MainHead from "../components/MainHead.astro";
+import BlueButton from "../components/BlueButton.astro";
---
<html lang="en">