1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# Contributing to segmentio/asm
## Code of Conduct
Help us keep the project open and inclusive. Please be kind to and
considerate of other developers, as we all have the same goal: make
the project as good as it can be.
* [Code of Conduct](./CODE_OF_CONDUCT.md)
## Licensing
All third party contributors acknowledge that any contributions they provide
will be made under the same open source license that the open source project
is provided under.
## Contributing
* Open an Issue to report bugs or discuss non-trivial changes.
* Open a Pull Request to submit a code change for review.
### Coding Rules
To ensure consistency throughout the source code, keep these rules in mind
when submitting contributions:
* All features or bug fixes must be tested by one or more tests.
* All exported types, functions, and symbols must be documented.
* All code must be formatted with `go fmt`.
|