Merge branch 'codex/fix-eslint-errors-in-codebase'

This commit is contained in:
2025-12-02 17:55:40 +10:00
25 changed files with 198 additions and 206 deletions
+3 -1
View File
@@ -8,7 +8,9 @@
"build": "tsc && cp src/pwa/manifest.json public/manifest.json && cp src/pwa/service-worker.js public/service-worker.js && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test:unit": "vitest",
"test": "vitest",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"coverage:unit": "vitest run --coverage",
"coverage:e2e": "node -e \"const fs=require('fs'); const path=require('path'); const target=path.join('coverage-reports','e2e'); fs.rmSync(target,{recursive:true,force:true});\" && npm run test:e2e && node scripts/remap-and-report.cjs",