f282549900
Co-authored-by: Eana Hufwe <eana@1a23.com> Co-authored-by: AkiraFukushima <h3.poteto@gmail.com>
45 lines
816 B
JSON
45 lines
816 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
|
|
"organizeImports": {
|
|
"enabled": false
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"style": {
|
|
"noUselessElse": "off"
|
|
}
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["*.vue", "packages/client/*.ts"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"useImportType": "warn",
|
|
"useShorthandFunctionType": "warn",
|
|
"useTemplate": "warn",
|
|
"noNonNullAssertion": "off",
|
|
"useNodejsImportProtocol": "off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"include": ["packages/backend/src/server/api/mastodon/**/*.ts"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"noParameterAssign": "off"
|
|
},
|
|
"complexity": {
|
|
"noStaticOnlyClass": "off",
|
|
"noThisInStatic": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|