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:
parent
1452cf69a4
commit
914daad18b
2 changed files with 12 additions and 8 deletions
18
biome.json
18
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": {
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Add table
Reference in a new issue