turns out intellij formats the code before committing which causes the ci/cd checks to fail

This commit is contained in:
maxDorninger
2025-06-28 23:12:59 +02:00
parent 6bade43d38
commit 0b8b57c574
203 changed files with 4164 additions and 4174 deletions

View File

@@ -1,5 +1,5 @@
import type {ParamMatcher} from '@sveltejs/kit';
import type { ParamMatcher } from '@sveltejs/kit';
export const match = ((param: string) => {
return Number.isInteger(parseInt(param, 10));
return Number.isInteger(parseInt(param, 10));
}) satisfies ParamMatcher;

View File

@@ -1,6 +1,6 @@
import type {ParamMatcher} from '@sveltejs/kit';
import {validate as uuidValidate} from 'uuid';
import type { ParamMatcher } from '@sveltejs/kit';
import { validate as uuidValidate } from 'uuid';
export const match = ((param: string) => {
return uuidValidate(param);
return uuidValidate(param);
}) satisfies ParamMatcher;