Skip to content

Commit e6f6fc8

Browse files
committed
fix(models): increase character limit for issue message
1 parent a9a05ad commit e6f6fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/models/src/lib/plugin-process-output-audit-issue.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const issueSeveritySchema = z.enum(['info', 'warning', 'error'], {
2525
export type IssueSeverity = z.infer<typeof issueSeveritySchema>;
2626
export const issueSchema = z.object(
2727
{
28-
message: z.string({ description: 'Descriptive error message' }).max(128),
28+
message: z.string({ description: 'Descriptive error message' }).max(512),
2929
severity: issueSeveritySchema,
3030
source: sourceFileLocationSchema.optional(),
3131
},

0 commit comments

Comments
 (0)