Files
better-auth/biome.json
2024-05-21 03:04:23 +03:00

34 lines
578 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
"ignore": ["dist", ".next", "examples"]
},
"formatter": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"useLiteralKeys": "off",
"noBannedTypes": "off"
},
"a11y": {
"useKeyWithClickEvents": "off",
"useButtonType": "off",
"noSvgWithoutTitle": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noParameterAssign": "off"
}
}
}
}