Thank you for your interest in go-toml! We appreciate you considering contributing to go-toml!
The main goal is the project is to provide an easy-to-use TOML implementation for Go that gets the job done and gets out of your way – dealing with TOML is probably not the central piece of your project.
As the single maintainer of go-toml, time is scarce. All help, big or small, is more than welcomed!
Any question you may have, somebody else might have it too. Always feel free to ask them on the issues tracker. We will try to answer them as clearly and quickly as possible, time permitting.
Asking questions also helps us identify areas where the documentation needs improvement, or new features that weren’t envisioned before. Sometimes, a seemingly innocent question leads to the fix of a bug. Don’t hesitate and ask away!
The best way to share your knowledge and experience with go-toml is to improve the documentation. Fix a typo, clarify an interface, add an example, anything goes!
The documentation is present in the README and thorough the source code. On release, it gets updated on GoDoc. To make a change to the documentation, create a pull request with your proposed changes. For simple changes like that, the easiest way to go is probably the “Fork this project and edit the file” button on Github, displayed at the top right of the file. Unless it’s a trivial change (for example a typo), provide a little bit of context in your pull request description or commit message.
Found a bug! Sorry to hear that :(. Help us and other track them down and fix by reporting it. File a new bug report on the issues tracker. The template should provide enough guidance on what to include. When in doubt: add more details! By reducing ambiguity and providing more information, it decreases back and forth and saves everyone time.
Want to contribute a patch? Very happy to hear that!
First, some high-level rules:
It does sound like a lot, but those best practices are here to save time overall and continuously improve the quality of the project, which is something everyone benefits from.
The fairly standard code contribution process looks like that:
Feel free to ask for help! You can create draft pull requests to gather some early feedback!
You can run tests for go-toml using Go’s test tool: go test ./...
.
When creating a pull requests, all tests will be ran on Linux on a few Go
versions (Travis CI), and on Windows using the latest Go version
(AppVeyor).
Try to look around and follow the same format and structure as the rest of
the code. We enforce using go fmt
on the whole code base.
Checklist: