biome.json•848 B
{
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 88
},
"files": {
"includes": ["src/**", "README.md", "package.json", "biome.json", "tsconfig.json"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "warn"
},
"complexity": {
"noForEach": "off"
},
"style": {
"useBlockStatements": "error"
}
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"overrides": [],
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single",
"trailingCommas": "all",
"arrowParentheses": "always"
}
}
}