0
mirror of https://github.com/valentineus/iii-client.git synced 2025-04-29 01:51:24 +03:00

Updating the description of the contribution

This commit is contained in:
Valentin Popov 2017-09-29 01:02:46 +04:00
parent 97d661af7f
commit 459ab8bae6

View File

@ -1,25 +1,37 @@
# Developer's Certificate of Origin 1.1 # 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).
By making a contribution to this project, I certify that: Fork, then clone the repo:
```bash
git clone git@github.com:<username>/iii-client.git
```
* (a) The contribution was created in whole or in part by me and I Set up your machine:
have the right to submit it under the open source license ```bash
indicated in the file; or npm install --only=development
```
* (b) The contribution is based upon previous work that, to the best Make sure the tests pass:
of my knowledge, is covered under an appropriate open source ```bash
license and I have the right under that license to submit that npm run test
work with modifications, whether created in whole or in part ```
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
* (c) The contribution was provided directly to me by some other Make your change.
person who certified (a), (b) or (c) and I have not modified Add tests for your change.
it. Make the tests pass:
```bash
npm run check
npm run test
```
* (d) I understand and agree that this project and the contribution Push to your fork and
are public and that a record of the contribution (including all [submit a pull request](https://github.com/valentineus/iii-client/compare).
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with Some things that will increase the chance that your pull request is accepted:
this project or the open source license(s) involved. * 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).