@goldenpath-cloud/frontend-standards
Version:
Golden Path frontend development standards for Svelte 5 with TypeScript, testing, and validation
26 lines (25 loc) • 608 B
JSON
{
"version": "1.0",
"description": "Golden Path Standards - Zod Core Standard",
"standards": {
"validation": "zod"
},
"rules": {
"validation": {
"library": "zod",
"formValidation": "required",
"errorHandling": "comprehensive"
}
},
"patterns": {
"formWithValidation": {
"description": "Form component with Zod schema validation",
"tags": ["form", "validation", "zod"]
}
},
"instructions": [
"Implement Zod validation for all form inputs",
"Include error handling and loading states",
"Use comprehensive validation schemas"
]
}