biome.json•722 B
{
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"includes": ["**"],
"attributePosition": "auto",
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 90,
"lineEnding": "lf"
},
"files": {
"includes": ["**/src/**/*.ts"]
},
"overrides": [
{
"includes": ["**/src/**/*.test.ts"],
"linter": {
"rules": {
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off"
}
}
}
}
]
}