Contributing Guidelines
master
is the branch with the most current release on CRAN.staging
is the development branch before being pushed to CRAN.
- Avoid working on the
master
branch. - Create a branch of
staging
and create a pull request againststaging
when you are ready. - Indentation: two spaces, no tabs.
- Use TRUE and FALSE, not T and F.
- formatR can help with cleaning up your code, after change default tab width to 2.
- Check for unnecessary whitespace with
git diff --check
before committing.
- For additions to the R code, we will be following this style guide moving forward.
- Comments on Style by H.W.
- Advanced R by H.W.
- R packages by H.W.