mirror of
https://github.com/101island/lolisland.us.git
synced 2026-03-01 11:49:43 +08:00
63 lines
1.2 KiB
JSON
63 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 80
|
|
},
|
|
"linter": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": [
|
|
"**",
|
|
"!**/src/public/**/*",
|
|
"!**/dist/**/*",
|
|
"!**/node_modules/**/*",
|
|
"!**/.astro/**/*"
|
|
]
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
},
|
|
"html": {
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentScriptAndStyle": true
|
|
},
|
|
"experimentalFullSupportEnabled": true
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"cssModules": true
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"useConst": "off",
|
|
"useImportType": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noUnusedImports": "off"
|
|
},
|
|
"suspicious": {
|
|
"noDuplicateProperties": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|