mirror of
https://github.com/forkless/NotAlterra.git
synced 2026-08-16 08:36:37 +02:00
900 B
900 B
name, description
| name | description |
|---|---|
| diligence | Verification checklist for code changes — always run before claiming a task is complete. |
Diligence
Before reporting any task as complete, verify:
- Format —
cargo fmt --all -- --checkproduces no output (pass). - Clippy —
cargo clippy --workspace -- -D warningspasses with zero errors. - Doc coverage — run
python3 tests/_check.pyto confirm zero undocumented functions. - Compilation —
cargo check --workspacemust pass with no errors. - Tests —
cargo test --workspacepasses all tests. - Git status — no uncommitted changes unless intentionally deferred.
- Remote parity —
git log --oneline -1matchesorigin/master. - Claim specificity — report exactly what was done and what was verified, not what was assumed.
Do not skip the check script. Do not assume prior passes still hold.