Files
better-auth/biome.json
Rahul Mishra d7f66335f5 feat: add cloudflare worker basic tests (#1524)
* feat: add cloudflare worker basic tests

* chore: fix conflict

---------

Co-authored-by: Bereket Engida <bekacru@gmail.com>
2025-02-22 20:18:34 +03:00

46 lines
751 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": {
"noUselessSwitchCase": "warn",
"noUselessTypeConstraint": "warn"
},
"correctness": {
"noUnusedImports": "warn"
}
}
},
"files": {
"ignore": [
"dist",
".next",
".svelte-kit",
"package.json",
".contentlayer",
".turbo",
".nuxt",
".source",
".expo",
".cache",
"dev/cloudflare/drizzle"
]
}
}