forked from Qortal/q-blog
19 lines
711 B
Markdown
19 lines
711 B
Markdown
# 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 (1–3 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.
|