Files
recflare/turbo/generators/helpers/validate.ts
T
Devin Zuczek 8e644a5c20 Initial commit
2026-06-08 18:23:40 -04:00

7 lines
199 B
TypeScript

export function nameValidator(value: string) {
if (!/^[a-z][a-z0-9-]*$/.test(value)) {
return 'Must start with a letter and contain only lowercase letters, numbers, and hyphens'
}
return true
}