Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.04 KB

CONTRIBUTING.md

File metadata and controls

33 lines (21 loc) · 1.04 KB

Contributing

This project follows Conventional Commits.

Before creating pull requests, please read the coding guidelines and follow some existing pull requests.

Optimizations

Please provide benchstat output if your PR tries to optimize something.

Committing generated code

If you are contributing to the project and make changes to the code generator, please commit the generated code as well. This is to make sure that the generated code is always up-to-date.

To update generated code run:

$ make generate examples

Generated code should be committed in a one separate commit chore: commit generated files.

$ git add ./examples ./internal/integration/*/*_gen*.go
$ git commit -m "chore: commit generated files"

Coding guidance

Please read Uber code style.