ci: add Makefile and stricter eslint config
Deploy / Build (push) Has been cancelled
Deploy / Deploy to Stapler (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / Oxlint (push) Has been cancelled
Lint / Type Check (push) Has been cancelled

This commit is contained in:
2026-05-02 00:08:13 +02:00
parent 1b626c1e89
commit 767fb8cfc6
12 changed files with 303 additions and 188 deletions
+6 -6
View File
@@ -1,9 +1,9 @@
export function simpleDateFormat(date: Date): string {
return (
date.getFullYear() +
'-' +
(date.getMonth() + 1).toString().padStart(2, '0') +
'-' +
date.getDate().toString().padStart(2, '0')
)
date.getFullYear().toString() +
"-" +
(date.getMonth() + 1).toString().padStart(2, "0") +
"-" +
date.getDate().toString().padStart(2, "0")
);
}