You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: No eslint-disable or ts-ignore — fix issues, zero suppressions in CI
alwaysApply: true
---
# No Lint Suppressions (Hard Rule)
- Do not use `eslint-disable`, `@ts-ignore`, or `@ts-expect-error`. Fix the root cause. CI: `eslint` and `tsc --noEmit` with zero suppressions. Rare exceptions: justify in comment and get review.
- Do not accept lint warnings. Fix all warnings (e.g. unused imports, no-img-element) before committing; do not commit with warnings.