Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 671 Bytes

File metadata and controls

37 lines (25 loc) · 671 Bytes

Contributing

Pull requests are welcome!

Before Opening a PR

Please ensure the following checks pass:

  1. Tests are passing:

    bazelisk test //...
  2. Formatting is correct:

    bazelisk run :fmt
  3. Lints are passing:

    bazelisk run :lint

Documentation

If new APIs are introduced, they must be documented.

If documentation changes, regenerate the docs in a separate commit:

bazelisk run //docs:update

PR Guidelines

PR title will be included in the changelog, so make sure it clearly communicates the change.

PR body should communicate the intent of the change - what it does and why.