You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 2.7 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Contributing
  2. Contributions are **welcome** and will be fully **credited**.
  3. Please read and understand the contribution guide before creating an issue or pull request.
  4. ## Etiquette
  5. This project is open source, and as such, the maintainers give their free time to build and maintain the source code
  6. held within. They make the code freely available in the hope that it will be of use to other developers. It would be
  7. extremely unfair for them to suffer abuse or anger for their hard work.
  8. Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the
  9. world that developers are civilized and selfless people.
  10. It's the duty of the maintainer to ensure that all submissions to the project are of sufficient
  11. quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used.
  12. ## Viability
  13. When requesting or submitting new features, first consider whether it might be useful to others. Open
  14. source projects are used by many developers, who may have entirely different needs to your own. Think about
  15. whether or not your feature is likely to be used by other users of the project.
  16. ## Procedure
  17. Before filing an issue:
  18. - Attempt to replicate the problem, to ensure that it wasn't a coincidental incident.
  19. - Check to make sure your feature suggestion isn't already present within the project.
  20. - Check the pull requests tab to ensure that the bug doesn't have a fix in progress.
  21. - Check the pull requests tab to ensure that the feature isn't already in progress.
  22. Before submitting a pull request:
  23. - Check the codebase to ensure that your feature doesn't already exist.
  24. - Check the pull requests to ensure that another person hasn't already submitted the feature or fix.
  25. ## Requirements
  26. If the project maintainer has any additional requirements, you will find them listed here.
  27. - **Add tests!** - Your patch won't be accepted if it doesn't have tests.
  28. - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
  29. - **Consider our release cycle** - We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
  30. - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
  31. - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
  32. **Happy coding**!