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 = {
standard: "Standard",
checklist: "Checklist",
project: "Project",
standard: "standard",
checklist: "checklist",
project: "project",
} as const;
export const VARIANTS = Object.values(VARIANT) as unknown as readonly [

View File

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

View File

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

View File

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