Files
q-blog/docs/PHASE1_TINY_PRS.md
2025-08-21 16:40:49 -04:00

19 lines
711 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Phase 1 — Tiny PR checklist
1. **Remove `// @ts-nocheck` (2 files)**
- Dry run: `bash scripts/dev/phase1/remove-ts-nocheck.sh`
- Apply: `bash scripts/dev/phase1/remove-ts-nocheck.sh --apply`
- Commit on `update`: `git add -A && git commit -m "phase1: drop ts-nocheck headers (no behavior change)" && git push`
2. **MUI v4 → v5 imports (if any)**
- Dry: `bash scripts/dev/phase1/fix-mui-imports.sh --dry`
- Apply in a tiny batch (13 files): `--apply`, commit & push.
3. **A11y: <img alt>**
- `bash scripts/dev/phase1/list-imgs-missing-alt.sh`
- Fix each hit with meaningful `alt`, or `alt=""` when decorative.
Keep PRs tiny and non-breaking so upstream can merge at any time.