CONTRIBUTING.md

Contributing to WashUthesis

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 main
  ```

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 here.

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)
}


duckmayr/draft documentation built on Dec. 20, 2021, 2:14 a.m.