Gofmt formats Go programs. We run gofmt -s
on your code, where -s
is for the "simplify" command
go vet
examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.
No problems detected. Good job!
Gocyclo calculates cyclomatic complexities of functions in Go source code.
The cyclomatic complexity of a function is calculated according to the following rules:
1 is the base complexity of a function
+1 for each 'if', 'for', 'case', '&&' or '||'
Go Report Card warns on functions with cyclomatic complexity > 15.
Golint is a linter for Go source code.
-
jmeter-extended-service/model.go
- Line 3: warning: comment on exported const JMeterConfFilename should be of the form "JMeterConfFilename ..." (golint)
- Line 21: warning: don't use underscores in Go names; const TestStrategy_Performance should be TestStrategyPerformance (golint)
- Line 21: warning: exported const TestStrategy_Performance should have comment or be unexported (golint)
- Line 22: warning: don't use underscores in Go names; const TestStrategy_Functional should be TestStrategyFunctional (golint)
- Line 22: warning: exported const TestStrategy_Functional should have comment or be unexported (golint)
- Line 23: warning: don't use underscores in Go names; const TestStrategy_HealthCheck should be TestStrategyHealthCheck (golint)
- Line 23: warning: exported const TestStrategy_HealthCheck should have comment or be unexported (golint)
- Line 24: warning: don't use underscores in Go names; const TestStrategy_RealUser should be TestStrategyRealUser (golint)
- Line 24: warning: exported const TestStrategy_RealUser should have comment or be unexported (golint)
- Line 26: warning: exported type JMeterConf should have comment or be unexported (golint)
- Line 31: warning: exported type Workload should have comment or be unexported (golint)
Checks whether your project has a LICENSE file.
No problems detected. Good job!
IneffAssign detects ineffectual assignments in Go code.
Misspell Finds commonly misspelled English words
No problems detected. Good job!