Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 454 Bytes

File metadata and controls

34 lines (23 loc) · 454 Bytes

Contributing

Commit format

Use Conventional Commits:

<type>[optional scope]: <description>

Common types:

  • feat
  • fix
  • chore
  • docs
  • refactor
  • test
  • ci

Examples:

  • feat(tui): add inspect view
  • fix(kill): handle process-not-found errors

CI rejects non-conforming commit messages.

Optional local commit hook

To enforce Conventional Commits locally, run:

git config core.hooksPath .githooks