Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.62 KB

CONTRIBUTING.md

File metadata and controls

22 lines (15 loc) · 1.62 KB

Contributing to GoCZMQ

The contributors are listed in AUTHORS (add yourself). This project uses the MPL v2 license, see LICENSE.

Our Process

Before you send a pull request, please familiarize yourself with the C4.1 Collective Code Construction Contract process. A quick summary (but please, do read the process document):

  • A Pull Request should be described in the form of a problem statement.
  • The code included with the pull request should be a proposed solution to that problem.
  • The submitted code should adhere to our style guidelines (described below).
  • The submitted code should include tests.
  • The submitted code should not break any existing tests.

"A Problem" should be one single clear problem. Large complex problems should be broken down into a series of smaller problems when ever possible.

Please be aware that GoCZMQ is not versioned. We merge to master. We deploy from master. Master is epxected to be working, at all times. We strive to do our very best to never break public API in this library. Changes can be additive, but they can not break the existing API. If a case arises where we need to, we will be loud about it on the ZeroMQ mailing list and try to build consensus among current maintainers that it's necessary. We will be very chagrined about it, and you can poke fun at us a bit.

Style Guide

  • Your code must be formatted with Gofmt
  • Your code should pass golint. If for some reason it cannot, please provide an explanation.
  • Your code should pass go vet