Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 877 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 877 Bytes

Required development tools:

  • go install golang.org/x/tools/cmd/goimports@latest
  • go install honnef.co/go/tools/cmd/[email protected]
  • go install gotest.tools/gotestsum@latest

Developer Certificate of Origin

To contribute to this repository, you must sign off your commits to certify that you have the right to contribute the code and that it complies with the open source license. The rules are pretty simple, if you can certify the content of DCO, then simply add a "Signed-off-by" line to your commit message to certify your compliance. Please use your real name as pseudonymous/anonymous contributions are not accepted.

Signed-off-by: Joe Smith <[email protected]>

If you set your user.name and user.email git configs, you can sign your commit automatically with git commit -s:

git commit -s -m "Your commit message"