mirror of https://github.com/buster-so/buster.git
Merge branch 'cursor/add-migration-and-update-endpoint-1563' of https://github.com/buster-so/buster into cursor/add-migration-and-update-endpoint-1563
This commit is contained in:
commit
7af9b8ef78
|
@ -610,7 +610,7 @@ NEVER proactively create documentation files (*.md) or README files. Only create
|
|||
|
||||
### Linting Rules
|
||||
- Always use `pnpm run check` or `pnpm run check:fix`
|
||||
- **Rule: `i dont' want caldue to ever run a biome lint fix only biome lint`**
|
||||
- **Rule: `I don't want Claude to ever run a biome lint fix only biome lint`**
|
||||
- This means ONLY use `pnpm run check` (linting without auto-fixing)
|
||||
- Do NOT use `pnpm run check:fix`
|
||||
- Claude should understand to ONLY run lint checks, never auto-fix
|
||||
|
|
|
@ -354,7 +354,7 @@ export class SlackHandler {
|
|||
}
|
||||
|
||||
// Parse request body
|
||||
const body = await c.req.json();
|
||||
const body = await c.req.json().catch(() => ({}));
|
||||
const parsed = UpdateIntegrationSchema.safeParse(body);
|
||||
|
||||
if (!parsed.success) {
|
||||
|
|
Loading…
Reference in New Issue