Split the current jj commit into multiple focused, self-contained, easy to
review commits.
Current commit
jj show --git
Principles
- One concern per commit: e.g. bug fix, feature, refactor, or config change
- Each commit passes all checks: format, lint, typecheck, build, test
- Tests travel with the code they test
- Refactors are never mixed with behavioral changes
- Prefer thin vertical slices, one complete feature end-to-end, over horizontal layers
- No orphaned code: ever
[Description truncada. Veja o README completo no GitHub.]