mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-05 21:04:43 +08:00
- 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.
65 lines
1.4 KiB
JSON
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
|
|
}
|
|
}
|