made everything lowercase

This commit is contained in:
2024-11-22 23:27:03 -06:00
parent ef96bf448d
commit e55b080544
4 changed files with 17 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
export const VARIANT = { export const VARIANT = {
standard: "Standard", standard: "standard",
checklist: "Checklist", checklist: "checklist",
project: "Project", project: "project",
} as const; } as const;
export const VARIANTS = Object.values(VARIANT) as unknown as readonly [ export const VARIANTS = Object.values(VARIANT) as unknown as readonly [

View File

@@ -1,10 +1,10 @@
export const LABEL = { export const LABEL = {
feature: "Feature", feature: "feature",
bug: "Bug", bug: "bug",
docs: "Docs", docs: "docs",
chore: "Chore", chore: "chore",
refactor: "Refactor", refactor: "refactor",
build: "Build", build: "build",
} as const; } as const;
export const LABELS = Object.values(LABEL) as unknown as readonly [ export const LABELS = Object.values(LABEL) as unknown as readonly [

View File

@@ -1,7 +1,7 @@
export const PRIORITY = { export const PRIORITY = {
high: "High", high: "high",
medium: "Medium", medium: "medium",
low: "Low", low: "low",
} as const; } as const;
export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [ export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [

View File

@@ -1,9 +1,9 @@
export const STATUS = { export const STATUS = {
backlog: "Backlog", backlog: "backlog",
todo: "Todo", todo: "todo",
inProgress: "In Progress", inprogress: "in progress",
done: "Done", done: "done",
canceled: "Canceled", canceled: "canceled",
} as const; } as const;
export const STATUSES = Object.values(STATUS) as unknown as readonly [ export const STATUSES = Object.values(STATUS) as unknown as readonly [