firefish/biome.json

32 lines
549 B
JSON
Raw Permalink Normal View History

{
2024-04-03 13:42:40 +00:00
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
2024-04-03 13:42:40 +00:00
"recommended": true,
"style": {
"noUselessElse": "off"
}
}
},
"overrides": [
{
2024-04-20 12:55:47 +00:00
"include": ["*.vue", "packages/client/*.ts"],
"linter": {
"rules": {
"style": {
"useImportType": "warn",
2024-04-04 08:53:02 +00:00
"useShorthandFunctionType": "warn",
"useTemplate": "warn",
2024-04-12 03:16:26 +00:00
"noNonNullAssertion": "off",
"useNodejsImportProtocol": "off"
}
}
}
}
]
}