-
Notifications
You must be signed in to change notification settings - Fork 18k
CodeTools
Jason Buberel edited this page Sep 12, 2015
·
38 revisions
An overview of tools that will help improve your Go code
-gometalinter - Automates the installation, configuration and application of gofmt
, golint
, govet
and several other code validation tools.
- gofmt - Start with the standard Go code formatter
- golint - Detects style mistakes in Go code
- goimports - Format code and fix your import statements
- Formatting Go Code with gofmt
- json-to-go - Generate Go structs from JSON.
- Go gen - Type-driven code generation (generics)
- gojson - Another Go struct generator.
- gonerics.io - Idiomatic Generics in Go
- gotemplate - Package-based templating system for Go
-
go vet - Read this first on how to use the
go vet
command.
- go oracle - user manual - A tool for understanding Go code
- Pythia - A browser-based UI for the Go Oracle.
- godegraph - A tool for generating dependency graphs of Go code.