Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/engineering.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
manual discipline
- Conventional Commits: `feat:`, `chore:`, `fix:`, `docs:`
- Rebase feature branches onto main (linear history)
- Enable `git rerere` (`git config --global rerere.enabled true`, plus
`rerere.autoupdate true` to auto-stage what it resolves) so conflict
resolutions are recorded and auto-replayed across repeated or long rebases
- Fail fast: validate at boundaries, return/throw early
- Minimize brace nesting: invert conditions, early returns
- Use named constants, not string literals for domain values
Expand Down