Documentation
Install godoc with go get golang.org/x/tools/cmd/godoc
Documentation can be generated with
godoc --http :8000Linters
Testing
Code coverage
go test -coverRace conditions
go test -raceVetting
Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string. Vet uses heuristics that do not guarantee all reports are genuine problems, but it can find errors not caught by the compilers.
go vet