You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Submit an issue on our Issues page [here](https://github.com/andschar/standartox/issues).
9
+
10
+
### Code contributions?
11
+
12
+
* **Fork** this repo to your Github account.
13
+
* **Clone** your version on your account down to your machine from your account, e.g,. `git clone https://github.com/<yourgithubusername>/standartox.git`.
14
+
* Make sure to **track upstream** progress (i.e., on our version of `standartox` at `andschar/standartox`) by doing `git remote add upstream https://github.com/andschar/standartox.git`. Before making changes make sure to pull changes in from upstream by doing either `git fetch upstream` then merge later or `git pull upstream` to fetch and merge in one step
15
+
* Make your **changes** (bonus points for making changes on a new branch).
16
+
* **Push** up to your account.
17
+
* Submit a **pull request** to home base at `andschar/standartox`.
18
+
19
+
### Code guidelines
20
+
21
+
We do not have strong guideline for our contributions and are happy to help.
22
+
23
+
1. Please follow [this](http://adv-r.had.co.nz/Style.html) styleguide for your contributions.
24
+
25
+
We want to keep dependencies to a minimum:
26
+
27
+
2. Please use the [`data.table`](https://github.com/Rdatatable/data.table) for data wrangling.
28
+
29
+
3. Please use the lightweight [`jsonlite`](https://github.com/jeroenooms/jsonlite) package for handling JSON.
30
+
31
+
4. Be nice to the resources! Use appropriate timeouts.
32
+
33
+
5. Tests go into a separate tests branch and not in the master branch.
0 commit comments