Skip to content

Commit

Permalink
fix(models): increase character limit for issue message
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Nov 8, 2023
1 parent a9a05ad commit e6f6fc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const issueSeveritySchema = z.enum(['info', 'warning', 'error'], {
export type IssueSeverity = z.infer<typeof issueSeveritySchema>;
export const issueSchema = z.object(
{
message: z.string({ description: 'Descriptive error message' }).max(128),
message: z.string({ description: 'Descriptive error message' }).max(512),
severity: issueSeveritySchema,
source: sourceFileLocationSchema.optional(),
},
Expand Down

0 comments on commit e6f6fc8

Please sign in to comment.