This describes how developers may contribute to Wishful.
- Report bugs (via GitHub)
- Give feedback on new feature discussions (via GitHub)
- Propose your own ideas (via GitHub)
Set your editor to run "go fmt" every time you save so that whitespace / style comments are kept to a minimum.
Howtos:
Typically running the main set of unit tests will be sufficient:
go test ./useful
If you're implementing a new feature you should always make sure that code coverage is never less than when you start a feature (onwards and upwards).
go test -coverprofile=coverage.out ./useful; go tool cover -html=coverage.out