update eslint

This commit is contained in:
Thomas Ruoff
2025-03-31 22:30:40 +02:00
parent 9a2052fcaa
commit 08398bd5a6
3 changed files with 323 additions and 351 deletions

View File

@@ -61,7 +61,7 @@ export function dateFormatFrontend(date: Date): string {
function dateParse(input: string, formatString: string): Date {
const date = parse(input, formatString, new Date())
if (date.getTime() !== NaN) {
if (!Number.isNaN(date.getTime())) {
return date
}

668
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -36,9 +36,9 @@
"@tailwindcss/postcss": "^4.0.17",
"@types/nodemailer": "^6.4.17",
"@types/uuid": "10.0.0",
"eslint": "8.57.0",
"eslint": "^9.23.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-prettier": "^10.1.1",
"jest": "29.7.0",
"postcss": "^8.5.3",
"prettier": "3.5.3",