fix: refactor drizzle integration to use optional chaining for DATABASE_URL fix: update Supabase integration to use getCookies instead of parseCookies feat: implement user profile creation with validation schema refactor: remove unused user-related functions and adjust signup logic fix: update user validation schema to include first and last name chore: enhance route tree with SSR support for router refactor: rename createRouter to getRouter for clarity fix: update RootDocument styles for background gradient refactor: clean up _authed routes by removing unused queries fix: adjust register form layout for better readability chore: simplify Vite configuration by removing unnecessary options
43 lines
754 B
JSON
43 lines
754 B
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": true,
|
|
"includes": [
|
|
"**/src/**/*",
|
|
"**/.vscode/**/*",
|
|
"**/index.html",
|
|
"**/vite.config.js",
|
|
"!**/src/routeTree.gen.ts",
|
|
"!**/node_modules/**/*"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"trailingCommas": "none",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
}
|
|
}
|