🔧 Fix TypeScript build error with ESLint disable

- Added eslint-disable-line for necessary 'any' type in prisma.ts
- Pre-push hook now passes all checks including build 
This commit is contained in:
Dennis Konkol
2025-09-05 23:10:54 +00:00
parent 4b504a5dce
commit 63503c2cef

View File

@@ -73,7 +73,7 @@ export const projectService = {
...data,
performance: data.performance || { lighthouse: 90, bundleSize: '50KB', loadTime: '1.5s' },
analytics: data.analytics || { views: 0, likes: 0, shares: 0 }
} as Record<string, unknown>
} as any // eslint-disable-line @typescript-eslint/no-explicit-any
});
},