CONTRIBUTING.md

Contributing to gpirt

To contribute code to this repository, please use the following process: - Submit an issue describing the problem to fix or enhancement to add - Fork the repository - Make your changes in a new branch:

  ```
  git checkout -b my-new-feature master
  ```

Commit message style

Every commit should have a commit message that follows these rules:

This commit message style was popularized by Tim Pope; you can read more about it here: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html

Coding style

To keep the coding style uniform, please follow the following style rules:

Here is an example demonstrating the above rules:

example_function <- function(x = 2) {
    if ( x < 1 ) {
        return(x)
    }
    return(log(x) * 2 + 1)
}

These contributing guidelines are also used by gpmlr



duckmayr/gpirt documentation built on Aug. 19, 2021, 10:48 p.m.