Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 2.8 KB

CONTRIBUTING.md

File metadata and controls

41 lines (30 loc) · 2.8 KB

Contributing Guidelines

As an open source software project, we welcome contributions. Please, read this these guidelines before attempting to contribute with this project.

Types of Contributions

A contribution can be one of the following cases:

  1. you have a question;
  2. you think you may have found a bug (including unexpected behaviour);
  3. you want to make some changes to the code base (e.g. to fix a bug, to add a new feature, to update 4. documentation).

Questions

  1. use the search functionality here to see if someone already filed the same issue or question;
  2. if your issue search did not yield any relevant results, make a new issue;
  3. apply the "Question" label; apply other labels when relevant.

Find Bugs

If you think you may have found a bug:

  1. use the search functionality here to see if someone already filed the same issue;
  2. if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include:
    • the SHA hashcode of the commit that is causing your problem;
    • some identifying information (name and version number) for dependencies you're using;
    • information about the operating system;
    • detailed steps to reproduce the bug.
  3. apply relevant labels to the newly created issue.

Changes to Source Code: fix bugs and add features

  1. (important) announce your plan to the rest of the community before you start working. This announcement should be in the form of a (new) issue;
  2. (important) wait until some consensus is reached about your idea is a good idea;
  3. if needed, fork the repository to your own Github profile and create your feature branch out of the latest master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in changes;
  4. make sure the existing tests still work;
  5. add your tests (if applicable);
  6. update or expand the documentation;
  7. push your feature branch to (your fork of) this repository on GitHub;
  8. create the pull request, e.g. following the instructions here.

If you feel like you have a valuable contribution to make, but you don't know how to write or run tests for it or create the documentation; don't let this discourage you from making the pull request; we can help you! Just go ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull request.