mirror of https://github.com/buster-so/buster.git
30 lines
562 B
JSON
30 lines
562 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"extends": ["../../biome.json"],
|
|
"files": {
|
|
"include": ["src/**/*", "scripts/**/*"]
|
|
},
|
|
"linter": {
|
|
"rules": {
|
|
"correctness": {
|
|
"useExhaustiveDependencies": "warn"
|
|
},
|
|
"a11y": {
|
|
"useKeyWithClickEvents": "off"
|
|
}
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["src/components/charts/*"],
|
|
"linter": {
|
|
"rules": {
|
|
"correctness": {
|
|
"useExhaustiveDependencies": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|