UNPKG

@goldenpath-cloud/frontend-standards

Version:

Golden Path frontend development standards for Svelte 5 with TypeScript, testing, and validation

10 lines (9 loc) 306 B
// Golden Path Standards - Zod Core Standard module.exports = { rules: { // Zod-specific patterns and best practices // These rules encourage proper Zod usage patterns 'prefer-const': 'error', // Zod schemas should be const 'no-var': 'error' // Use const/let for schema definitions } }