Files
better-auth/biome.json
2024-09-02 23:30:20 +03:00

40 lines
652 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": false,
"suspicious": {
"noImplicitAnyLet": "warn",
"noDuplicateObjectKeys": "warn"
},
"performance": {
"noDelete": "error"
},
"complexity": {
"noForEach": "warn",
"noUselessSwitchCase": "warn",
"noUselessTypeConstraint": "warn"
}
}
},
"files": {
"ignore": [
"dist",
".next",
".svelte-kit",
"package.json",
".contentlayer",
".turbo",
".nuxt"
]
}
}