Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 2.64 KB

CONTRIBUTING.md

File metadata and controls

57 lines (47 loc) · 2.64 KB

Contribution Guide

We are happy to accept pull requests and issues from any contributors. Please note that we try to maintain a consistent quality standard. For a quick overview please find some of the most important points below.

Quick Overview

  • Keep a clean commit history. This means no merge commits, and no long series of "fixup" patches (rebase or squash as appropriate). Structure work as a series of logically ordered, atomic patches. git rebase -i is your friend.
  • Changes should only be made via pull request, with review. A pull request will be committed by a "committer" (an account listed in CODEOWNERS) once it has had an explicit positive review.
  • Make sure you update the CHANGELOG when submitting a PR.
  • When creating your first PR, enter your name in the CONTRIBUTORS list in alphabetical order.
  • When changes are restricted to a specific area, you are recommended to add a tag to the beginning of the first line of the commit message in square brackets e.g., "[snitch] Fix bug #157".
  • Do not force push. After rebasing, use --force-with-lease instead.
  • Do not attempt to commit code with a non-Apache (or Solderpad for hardware) license without discussing first.
  • If a relevant bug or tracking issue exists, reference it in the pull request and commits.
  • When not working on your own fork, please prefix your branch with your username to keep the branches organized. I.e., "myname/amazing-feature"

Git Considerations

  • Separate subject from body with a blank line
  • Limit the subject line to 72 characters
  • Capitalize the subject line
  • Do not end the subject line with a period
  • Use the imperative mood in the subject line
  • Use the body to explain what and why vs. how

For further information please see the excellent guide by Chris Beams.

Code Style

Consistent code style is important. We try to follow existing style conventions as much as possible:

Please make sure that any code you submit is adhering to the correct standard.