Skip to content

Commit

Permalink
test: fix regression upon import sorting (#10802)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Apr 17, 2024
1 parent 1452cf6 commit 914daad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions biome.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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": {
Expand Down
Original file line number Diff line number Diff line change
@@ -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">
Expand Down

0 comments on commit 914daad

Please sign in to comment.