toketi-iothubreact/CONTRIBUTING.md

2.4 KiB

We'll be glad to accept patches and contributions to the project. There are just few guidelines we ask to follow.

Contribution license Agreement

If you want/plan to contribute, we ask you to sign a CLA (Contribution license Agreement). A friendly bot will remind you about it when you submit a pull-request.

Submitting a contribution

Note: please send Pull Requests to the DEVELOP branch. Thanks!

It's generally best to start by opening a new issue describing the work you intend to submit. Even for minor tasks, it's helpful to know what contributors are working on. Please mention in the initial issue that you are planning to work on it, so that it can be assigned to you.

Follow the usual GitHub flow process of forking the project, and setup a new branch to work in. Each group of changes should be done in separate branches, in order to ensure that a pull request only includes the changes related to one issue.

Any significant change should almost always be accompanied by tests. Look at the existing tests to see the testing approach and style used.

Follow the project coding style, to ensure consistency and quick code reviews.

Do your best to have clear commit messages for each change, in order to keep consistency throughout the project. Reference the issue number (#num). A good commit message serves at least these purposes:

  • Speed up the pull request review process
  • Help future developers to understand the purpose of your code
  • Help the maintainer write release notes

One-line messages are fine for small changes, but bigger changes should look like this:

$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."

Finally, push the commits to your fork, submit a pull request against the develop branch, wait for the automated feedback from Travis CI, and follow the code review progress. The team might ask for some changes before merging the pull request.

Code style

If you are sending a pull request, please check the code style with IntelliJ IDEA, importing the settings from Codestyle.IntelliJ.xml.