Files
dc-recorder/biome.json

24 lines
437 B
JSON
Raw Normal View History

2026-05-13 15:20:43 +07:00
{
2026-05-13 15:28:25 +07:00
"files": {
"includes": ["src/**/*.ts", "tests/**/*.ts", "*.json", "*.ts"]
},
2026-05-13 15:20:43 +07:00
"formatter": {
"enabled": true,
"indentStyle": "space",
2026-05-13 15:28:25 +07:00
"indentWidth": 2
2026-05-13 15:20:43 +07:00
},
"linter": {
"enabled": true,
"rules": {
2026-05-13 15:28:25 +07:00
"recommended": false,
"style": {
"noNonNullAssertion": "warn",
"useNodejsImportProtocol": "warn"
},
"suspicious": {
"noExplicitAny": "warn"
}
}
2026-05-13 15:20:43 +07:00
}
}