0
mirror of https://github.com/valentineus/iii-client.git synced 2025-04-28 01:41:25 +03:00
iii-client/CONTRIBUTING.md

37 lines
845 B
Markdown

# Contributing
We love pull requests from everyone.
By participating in this project, you agree to abide by the
[code of conduct](https://opensource.guide/how-to-contribute).
Fork, then clone the repo:
```bash
git clone git@github.com:<username>/iii-client.git
```
Set up your machine:
```bash
NODE_ENV=development npm install
```
Make sure the tests pass:
```bash
npm run test
```
Make your change.
Add tests for your change.
Make the tests pass:
```bash
npm run check
npm run test
```
Push to your fork and
[submit a pull request](https://github.com/valentineus/iii-client/compare).
Some things that will increase the chance that your pull request is accepted:
* Write tests.
* Follow our
[style guide](https://eslint.org/docs/about).
* Write a
[good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).