buster/packages/database/biome.json

33 lines
611 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"extends": ["../../biome.json"],
"files": {
"include": ["src/**/*", "scripts/**/*"]
},
"overrides": [
{
"include": ["**/*.ts", "**/*.test.ts"],
"linter": {
"rules": {
"style": {
"useImportType": "off"
},
"suspicious": {
"noExplicitAny": "error"
}
}
}
},
{
"include": ["**/*.ts"],
"linter": {
"rules": {
"suspicious": {
"noConsoleLog": "off"
}
}
}
}
]
}