First of all, thanks for considering contributing to distilltools
! 👍 It’s people like you that make it rewarding for us - the project maintainers - to work on distilltools
. We truly value all contributions, however big or small, whether or not they get incorporated into the package. We really appreciate your engagement with distilltools
😊
distilltools
is an open source project, maintained by people who care. We are not directly funded to do so.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
There are several ways you can contribute to this project. If you want to know more about why and how to contribute to open source projects like this one, see this Open Source Guide.
Think distilltools
is useful? Let others discover it, by telling them in person, via Twitter or a blog post.
Using distilltools
and got stuck? Browse the documentation to see if you can find a solution. Still stuck? Post your question as an issue on GitHub. We’ll try to do our best to answer it. Questions often lead to better documentation or the discovery of bugs or are the impetus for new features, so not only will you be helping yourself, but others too.
Want to ask a question in private? Contact the package maintainer by email.
Have an idea for a new distilltools
feature? Take a look at the documentation and issue list to see if it isn’t included or suggested yet. If not, suggest your idea as an issue on GitHub. While we can’t promise to implement your idea, it helps to:
See below if you want to contribute code for your idea as well.
Using distilltools
and discovered a bug? That’s annoying! Don’t let others have the same experience and report it as an issue on GitHub so we can fix it. A good bug report makes it easier for us to do so, so please include:
Noticed a typo on the website? Think a function could use a better example? Good documentation makes all the difference, so your help to improve it is very welcome!
This website is generated with pkgdown
. That means we don’t have to write any html: content is pulled together from documentation in the code, vignettes, Markdown files, the package DESCRIPTION
and _pkgdown.yml
settings. If you know your way around pkgdown
, you can propose a file change to improve documentation. If not, report an issue and we can point you in the right direction.
Functions are described as comments near their code and translated to documentation using roxygen2
. If you want to improve a function description:
R/
directory in the code repository.#'
).Care to fix bugs or implement new functionality for distilltools
? Awesome! 👏 Have a look at the issue list and leave a comment on the things you want to work on. See also the development guidelines below.
We try to follow the GitHub flow for development.
git pull upstream main
..Rproj
).R CMD check
using devtools::check()
and aim for 0 errors and warnings.Please follow the tidyverse style guide. We recommend the use of the styler package, which formats code to follow these guidelines and the lintr package, which performs automated checks to confirm that you conform to the style guide.
This contributing guide is adapted from wateRinfo. Thanks for this comprehensive resource @stijnvanhoey 👍
I am also grateful to rOpenSci and their resources on setting up a package to foster a community.