Gofmt formats Go programs. We run gofmt -s
on your code, where -s
is for the "simplify" command
No problems detected. Good job!
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.
No problems detected. Good job!
Golint is a linter for Go source code.
-
lenin/lenin.go
- Line 68: warning: comment on exported function New should be of the form "New ..." (golint)
- Line 94: warning: comment on exported function Get should be of the form "Get ..." (golint)
- Line 114: warning: comment on exported function About should be of the form "About ..." (golint)
- Line 134: warning: comment on exported function Rules should be of the form "Rules ..." (golint)
- Line 154: warning: comment on exported function Version should be of the form "Version ..." (golint)
-
lenin/lenin_type.go
- Line 22: warning: comment on exported type NewReq should be of the form "NewReq ..." (with optional leading article) (golint)
- Line 29: warning: exported type NewResp should have comment or be unexported (golint)
- Line 33: warning: comment on exported type GetReq should be of the form "GetReq ..." (with optional leading article) (golint)
- Line 38: warning: exported type GetResp should have comment or be unexported (golint)
- Line 44: warning: exported type GetRespInfo should have comment or be unexported (golint)
- Line 49: warning: comment on exported type AboutResp should be of the form "AboutResp ..." (with optional leading article) (golint)
- Line 55: warning: comment on exported type RulesResp should be of the form "RulesResp ..." (with optional leading article) (golint)
- Line 61: warning: comment on exported type VersionResp should be of the form "VersionResp ..." (with optional leading article) (golint)
Checks whether your project has a LICENSE file.
No problems detected. Good job!
IneffAssign detects ineffectual assignments in Go code.
No problems detected. Good job!
Misspell Finds commonly misspelled English words
No problems detected. Good job!