mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"nursery": {
|
|
"useSortedClasses": "info"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "warn"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 128,
|
|
"useEditorconfig": true
|
|
},
|
|
"files": {
|
|
"ignore": ["node_modules", ".git", "dist"]
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"assists": {
|
|
"actions": {
|
|
"source": {
|
|
"sortJsxProps": "on"
|
|
}
|
|
}
|
|
},
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"defaultBranch": "main",
|
|
"root": ".",
|
|
"useIgnoreFile": true
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["*.astro"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"useConst": "off",
|
|
"useImportType": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|