mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
65 lines
1.2 KiB
JSON
65 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
|
"files": {
|
|
"ignore": [
|
|
"vendor",
|
|
"**/dist/**",
|
|
"**/smoke/**",
|
|
"**/fixtures/**",
|
|
"**/vendor/**",
|
|
"**/.vercel/**"
|
|
],
|
|
"include": ["test/**", "e2e/**", "packages/**", "/scripts/**"]
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "tab",
|
|
"indentWidth": 2,
|
|
"lineWidth": 100,
|
|
"ignore": [
|
|
"benchmark/projects/",
|
|
"benchmark/results/",
|
|
".changeset",
|
|
"pnpm-lock.yaml",
|
|
"*.astro"
|
|
]
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": false,
|
|
"style": {
|
|
"useNodejsImportProtocol": "error"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"trailingCommas": "all",
|
|
"quoteStyle": "single",
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
"json": {
|
|
"parser": {
|
|
"allowComments": true,
|
|
"allowTrailingCommas": true
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"trailingCommas": "none"
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["package.json"],
|
|
"json": {
|
|
"formatter": {
|
|
"lineWidth": 1
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|