Skip to content

Commit 806d07f

Browse files
committed
style: format team rank enum multi-line after main rebase
Conflict resolution kept main's expanded `rank` enum; reformat it multi-line to match the rest of content.config.ts and satisfy the array-element-newline lint rule. https://claude.ai/code/session_01TWED5ZjQD6uv434RqTBaY2
1 parent 8780ea6 commit 806d07f

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

content.config.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,14 @@ const teamSchema = z
8888
// who wear several hats (e.g. development + building).
8989
role: z.union([z.string(), z.array(z.string())]).optional(),
9090
// Coarse group for sectioning/ordering; specific job stays in `role`.
91-
rank: z.enum(['admin', 'teamassist', 'content', 'moderation', 'media', 'lite']).optional(),
91+
rank: z.enum([
92+
'admin',
93+
'teamassist',
94+
'content',
95+
'moderation',
96+
'media',
97+
'lite'
98+
]).optional(),
9299
slogan: z.string().optional(),
93100
bio: z.string().optional(),
94101
since: z.string().optional(),

0 commit comments

Comments
 (0)