hippofish/biome.json
Lhcfl 66dec9c54e chore: Chang useImportType to warn for vue files
vue is only partically supported by biome (see https://biomejs.dev/internals/language-support/)
Some components may be incorrectly recognized as type imports
2024-04-04 14:51:31 +08:00

27 lines
378 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noUselessElse": "off"
}
}
},
"overrides": [
{
"include": ["*.vue"],
"linter": {
"rules": {
"style": {
"useImportType": "warn"
}
}
}
}
]
}