blob: 48265f0102f072b4f3dc817b389ba04dc6daabb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Contributing to Grafn
Improvement to the codebase are welcome: whether it's for documentation,
performance, legibility or to improve how useful it is.
## How to contribute
Above All: Be nice, always: with yourself and others.
* Make sure the linter show no warnings or errors
* Make sure the tests continue passing
* Update the CHANGELOG according to [keep a changelog][keep-a-changelog] standard
* Update the README where appropriate
* Update the version following [semantic versioning][semver]
* Make the PRs directly to the master branch, and include context so we understand
why the contributions are being made.
[semver]: https://semver.org/
[keep-a-changelog]: https://keepachangelog.com/en/1.0.0/
|