0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-13 22:11:20 -05:00

test: fix regression upon import sorting (#10802)

This commit is contained in:
Emanuele Stoppa 2024-04-17 13:01:29 +01:00 committed by GitHub
parent 1452cf69a4
commit 914daad18b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 8 deletions

View file

@ -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": {

View file

@ -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">