Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 995 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 995 Bytes

Go Development Tools

| English | Русский |

Required software:

  1. Compilers: Go official binary distribution for your OS.
  2. Code formatting: built-in gofmt or goimports (includes gofmt)
  3. Linters: golint
  4. VCS - Version Control System - GitHub, Git, GUI

Optional tools:

  1. IDE - Integrated development environment and editors: Atom with go-plus package, Gogland, liteide, vim-go plugin
  2. CI - Continuous Integration - TravisCI, configuration example
  3. Code analysis: built-in go vet, Go Report Card
  4. Documentation: built-in go doc creates documentation from comments