#Go
Go
golintStyle and convention problems with documentation, naming, dead-code analysis, and more.go fmtadjusts your go code to conform to standard Go style (indentation, spacing, import orders, etc.)go vetdoes deeper static analysis on your code and determines if there are more serious problems in the code, including poorly structured printf statements, etc.
In addition, there are profiling tools, race-condition-analysis tools, and so on that work at program runtime.