Deploy to VPS / deploy (push) Failing after 1m43s
- Added new dependencies for Next.js and lucide-react in pnpm-workspace.yaml. - Refactored DashboardPage component to improve readability and error handling. - Enhanced Header component to display error status with an alert icon. - Updated MobileTabBar and Sidebar components to use a centralized tabs definition. - Improved ChannelsView in dashboard-panel to handle channel fetching more cleanly. - Fixed ActiveSpeaker type to use camelCase for userId. - Updated MessagesPanel to handle guildId checks more gracefully. - Adjusted API calls in dashboard and messages to align with backend expectations. - Refined type definitions across various interfaces for consistency and clarity.
71 lines
1.4 KiB
JSON
71 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"src/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"services/**/*.ts",
|
|
"services/**/*.tsx",
|
|
"packages/**/*.ts",
|
|
"*.json",
|
|
"*.ts",
|
|
"!vendor",
|
|
"!.claude",
|
|
"!services/**/dist",
|
|
"!packages/**/dist",
|
|
"!services/**/.next",
|
|
"!services/**/out"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"preset": "recommended",
|
|
"style": {
|
|
"noNonNullAssertion": "warn",
|
|
"useNodejsImportProtocol": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noUnknownAtRules": "off",
|
|
"useIterableCallbackReturn": "off",
|
|
"noArrayIndexKey": "warn"
|
|
},
|
|
"a11y": {
|
|
"useButtonType": "off",
|
|
"noAutofocus": "off"
|
|
},
|
|
"performance": {
|
|
"noImgElement": "warn"
|
|
},
|
|
"security": {
|
|
"noDangerouslySetInnerHtml": "warn"
|
|
},
|
|
"correctness": {
|
|
"noInvalidUseBeforeDeclaration": "off",
|
|
"noUnusedFunctionParameters": "warn"
|
|
}
|
|
},
|
|
"domains": {
|
|
"next": "recommended",
|
|
"react": "recommended"
|
|
}
|
|
},
|
|
"assist": {
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|