🔧 Fix ESLint Issues

 Resolved:
- Removed unused imports (Database, BarChart3, Filter, etc.)
- Fixed TypeScript 'any' types to proper types
- Removed unused variables and parameters
- Cleaned up import statements

🎯 Results:
- ESLint errors: 0 
- Only 2 non-critical warnings remain (img vs Image)
- Code is now production-ready for CI/CD

📊 Performance:
- Type safety improved
- Bundle size optimized through tree-shaking
- Better developer experience
This commit is contained in:
Dennis Konkol
2025-09-05 21:46:28 +00:00
parent 9835bb810d
commit e2bf245e86
13 changed files with 46 additions and 66 deletions

View File

@@ -41,11 +41,11 @@ export async function GET(request: NextRequest) {
totalProjects: projects.length,
publishedProjects: projects.filter(p => p.published).length,
featuredProjects: projects.filter(p => p.featured).length,
totalViews: projects.reduce((sum, p) => sum + ((p.analytics as any)?.views || 0), 0),
totalLikes: projects.reduce((sum, p) => sum + ((p.analytics as any)?.likes || 0), 0),
totalShares: projects.reduce((sum, p) => sum + ((p.analytics as any)?.shares || 0), 0),
totalViews: projects.reduce((sum, p) => sum + ((p.analytics as Record<string, unknown>)?.views as number || 0), 0),
totalLikes: projects.reduce((sum, p) => sum + ((p.analytics as Record<string, unknown>)?.likes as number || 0), 0),
totalShares: projects.reduce((sum, p) => sum + ((p.analytics as Record<string, unknown>)?.shares as number || 0), 0),
avgLighthouse: projects.length > 0
? Math.round(projects.reduce((sum, p) => sum + ((p.performance as any)?.lighthouse || 0), 0) / projects.length)
? Math.round(projects.reduce((sum, p) => sum + ((p.performance as Record<string, unknown>)?.lighthouse as number || 0), 0) / projects.length)
: 0
},
projects: projects.map(project => ({
@@ -53,10 +53,10 @@ export async function GET(request: NextRequest) {
title: project.title,
category: project.category,
difficulty: project.difficulty,
views: (project.analytics as any)?.views || 0,
likes: (project.analytics as any)?.likes || 0,
shares: (project.analytics as any)?.shares || 0,
lighthouse: (project.performance as any)?.lighthouse || 0,
views: (project.analytics as Record<string, unknown>)?.views as number || 0,
likes: (project.analytics as Record<string, unknown>)?.likes as number || 0,
shares: (project.analytics as Record<string, unknown>)?.shares as number || 0,
lighthouse: (project.performance as Record<string, unknown>)?.lighthouse as number || 0,
published: project.published,
featured: project.featured,
createdAt: project.createdAt,