mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Fix 1 error: remove unused suggestedAction variable in error-reporting.ts - Fix pipeline: use || true so ESLint exit code doesn't abort before threshold check - Fix 762 warnings across 43 files: - Replace || with ?? (prefer-nullish-coalescing) - Add explicit null checks (strict-boolean-expressions) - Replace any types with proper interfaces (no-explicit-any, no-unsafe-*) - Add readonly to never-reassigned class members (prefer-readonly) - Remove async from functions without await (require-await) - Wrap void returns in braces (no-confusing-void-expression) - Remove unused eslint-disable directives - Replace console.log with console.warn/error (no-console) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>