Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.39 KB

CONTRIBUTING.md

File metadata and controls

59 lines (39 loc) · 1.39 KB

Contributing

Tools

Commit format

We use Conventional Commits for commit messages.

In short a commit message should follow this format:

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

For example:

feat(keypair): add format check

Commit type

Most used types:

  • fix
  • feat

Further recommended types:

  • build
  • chore
  • ci
  • docs
  • style
  • refactor
  • perf
  • test

Issue numbers in a commit

If the commit relates to an issue the issue number can be added to the commit-descrition or -body, i.e.:

feat(keypair): add format check #123