mirror of https://github.com/buster-so/buster.git
26 lines
437 B
JSON
26 lines
437 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"extends": ["../../biome.json"],
|
|
"files": {
|
|
"include": ["src/**/*"]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["**/*.ts"],
|
|
"linter": {
|
|
"rules": {
|
|
"suspicious": {
|
|
"noConsoleLog": "off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"include": ["evals/**/*.ts"],
|
|
"linter": {
|
|
"enabled": false
|
|
}
|
|
}
|
|
]
|
|
}
|