Preparing report...

Report for git.autonomic.zone/coop-cloud/go-abra

A    Great!    Found 6 issues across 5 files

Tweet

gofmt100%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command

No problems detected. Good job!


go_vet100%

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!


gocyclo100%

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!


golint0%

Golint is a linter for Go source code.

    • /git.autonomic.zone/coop-cloud/go-abra/cli/common.go
    • Line 11: warning: exported var Status should have comment or be unexported (golint)
    • Line 12: warning: exported var StatusFlag should have comment or be unexported (golint)
    • Line 18: warning: exported var Domain should have comment or be unexported (golint)
    • Line 19: warning: exported var DomainFlag should have comment or be unexported (golint)
    • Line 25: warning: exported var Server should have comment or be unexported (golint)
    • Line 26: warning: exported var ServerFlag should have comment or be unexported (golint)
    • Line 32: warning: exported var AppName should have comment or be unexported (golint)
    • Line 33: warning: exported var AppNameFlag should have comment or be unexported (golint)
    • Line 39: warning: exported var Secrets should have comment or be unexported (golint)
    • Line 40: warning: exported var SecretsFlag should have comment or be unexported (golint)
    • Line 46: warning: exported var Pass should have comment or be unexported (golint)
    • Line 47: warning: exported var PassFlag should have comment or be unexported (golint)
    • Line 53: warning: exported var Force should have comment or be unexported (golint)
    • Line 54: warning: exported var ForceFlag should have comment or be unexported (golint)
    • Line 60: warning: exported var Update should have comment or be unexported (golint)
    • Line 61: warning: exported var UpdateFlag should have comment or be unexported (golint)
    • Line 67: warning: exported var NoDomainPoll should have comment or be unexported (golint)
    • Line 68: warning: exported var NoDomainPollFlag should have comment or be unexported (golint)
    • Line 74: warning: exported var SkipVersionCheck should have comment or be unexported (golint)
    • Line 75: warning: exported var SkipVersionCheckFlag should have comment or be unexported (golint)
    • Line 81: warning: exported var Volumes should have comment or be unexported (golint)
    • Line 82: warning: exported var VolumesFlag should have comment or be unexported (golint)
    • Line 88: warning: exported var All should have comment or be unexported (golint)
    • Line 89: warning: exported var AllFlag should have comment or be unexported (golint)
    • Line 95: warning: exported var NoTTY should have comment or be unexported (golint)
    • Line 96: warning: exported var NoTTYFlag should have comment or be unexported (golint)
    • Line 102: warning: exported var User should have comment or be unexported (golint)
    • Line 103: warning: exported var UserFlag should have comment or be unexported (golint)
    • Line 109: warning: exported var Env should have comment or be unexported (golint)
    • Line 110: warning: exported var EnvFlag should have comment or be unexported (golint)
    • Line 117: warning: exported var Verbose should have comment or be unexported (golint)
    • Line 118: warning: exported var VerboseFlag should have comment or be unexported (golint)
    • Line 125: warning: exported var Debug should have comment or be unexported (golint)
    • Line 126: warning: exported var DebugFlag should have comment or be unexported (golint)
    • Line 133: warning: exported var NoPrompt should have comment or be unexported (golint)
    • Line 134: warning: exported var NoPromptFlag should have comment or be unexported (golint)
    • Line 141: warning: exported var Branch should have comment or be unexported (golint)
    • Line 142: warning: exported var BranchFlag should have comment or be unexported (golint)
    • Line 149: warning: exported var SkipUpdate should have comment or be unexported (golint)
    • Line 150: warning: exported var SkipUpdateFlag should have comment or be unexported (golint)
    • Line 157: warning: exported var SkipCheck should have comment or be unexported (golint)
    • Line 158: warning: exported var SkipCheckFlag should have comment or be unexported (golint)
    • Line 165: warning: exported var Stack should have comment or be unexported (golint)
    • Line 166: warning: exported var StackFlag should have comment or be unexported (golint)
    • Line 173: warning: exported var Type should have comment or be unexported (golint)
    • Line 174: warning: exported var TypeFlag should have comment or be unexported (golint)

license0%

Checks whether your project has a LICENSE file.


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!