typebot.io/biome.json
Baptiste Arnaud f170033be0
📝 Recommend Neon in self-hosting docs (#2515)
- Add Neon as the recommended production Postgres provider in
self-hosting docs, with a non-affiliate note.
- Link database recommendations to `https://typebot.com/neon`.
- Ignore `.context` files from Biome checks.
2026-05-28 17:02:54 +02:00

65 lines
1.4 KiB
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"files": {
"includes": [
"**",
"!**/node_modules",
"!**/.next",
"!**/dist",
"!**/openapi/**/*.json",
"!**/routeTree.gen.ts",
"!**/i18n-ally-custom-framework.yml",
"!**/.claude",
"!**/emojiList.json",
"!apps/builder/public/icons-bundle.json",
"!**/iconNames.ts",
"!**/.last-run.json",
"!**/test/assets/**/*.json",
"!.context",
"!.opencode",
"!.codex",
"!.cursor",
"!.factory",
"!.gemini"
]
},
"css": {
"parser": {
"tailwindDirectives": true
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"performance": {
"noImgElement": "off"
},
"style": {
"noNonNullAssertion": "off",
"noParameterAssign": "off"
},
"correctness": {
"useExhaustiveDependencies": "off",
"useHookAtTopLevel": "off"
},
"complexity": {
"noForEach": "off"
},
"suspicious": {
"noExplicitAny": "off",
"useIterableCallbackReturn": "off"
}
}
},
"formatter": {
"indentStyle": "space"
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
}
}