refactor: camelCase names

This commit is contained in:
madkarmaa 2025-04-05 12:19:05 +02:00
parent bbb999a209
commit 0bd302aff2

View File

@ -36,14 +36,10 @@ const getEaster = (): Moment => {
};
export const themes = {
new_year: ['january', 1],
newYear: ['january', 1],
christmas: ['december', 25],
valentine: ['february', 14],
halloween: ['october', 31],
// prettier-ignore
easter: [
getEaster().format('MMMM').toLowerCase() as MonthName,
getEaster().date()
],
april_fools: ['april', 1]
easter: [getEaster().format('MMMM').toLowerCase() as MonthName, getEaster().date()],
aprilFools: ['april', 1]
} as const satisfies Record<string, [month: MonthName, date: number]>;