Skip to main content
Commonmark migration
Source Link

#Go

Go

  • golint Style and convention problems with documentation, naming, dead-code analysis, and more.
  • go fmt adjusts your go code to conform to standard Go style (indentation, spacing, import orders, etc.)
  • go vet does 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.

#Go

  • golint Style and convention problems with documentation, naming, dead-code analysis, and more.
  • go fmt adjusts your go code to conform to standard Go style (indentation, spacing, import orders, etc.)
  • go vet does 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.

Go

  • golint Style and convention problems with documentation, naming, dead-code analysis, and more.
  • go fmt adjusts your go code to conform to standard Go style (indentation, spacing, import orders, etc.)
  • go vet does 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.

Source Link
rolfl
  • 98.1k
  • 4
  • 117
  • 238

#Go

  • golint Style and convention problems with documentation, naming, dead-code analysis, and more.
  • go fmt adjusts your go code to conform to standard Go style (indentation, spacing, import orders, etc.)
  • go vet does 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.