mirror of https://github.com/buster-so/buster.git
33 lines
611 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|