Files
socraticode/biome.json
T
2026-02-28 17:06:21 +00:00

30 lines
519 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "warn",
"useTemplate": "warn"
},
"suspicious": {
"noExplicitAny": "warn"
}
}
},
"formatter": {
"enabled": false
},
"files": {
"includes": ["src/**/*.ts", "tests/**/*.ts"]
}
}