Preparing report...

Report for github.com/gophergala/go_report

(v0.0.0-20150204121917-d736a29ce895)

A    Great!    Found 8 issues across 9 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!


gocyclo88%

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.


golint22%

Golint is a linter for Go source code.

    • go_report/check/go_vet.go
    • Line 3: warning: exported type GoVet should have comment or be unexported (golint)
    • Line 8: warning: exported method GoVet.Name should have comment or be unexported (golint)
    • go_report/check/gocyclo.go
    • Line 3: warning: exported type GoCyclo should have comment or be unexported (golint)
    • Line 8: warning: exported method GoCyclo.Name should have comment or be unexported (golint)
    • go_report/check/gofmt.go
    • Line 3: warning: exported type GoFmt should have comment or be unexported (golint)
    • Line 8: warning: exported method GoFmt.Name should have comment or be unexported (golint)
    • go_report/check/goget.go
    • Line 12: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 17: warning: exported type Package should have comment or be unexported (golint)
    • Line 31: warning: exported method Package.GetDependencies should have comment or be unexported (golint)
    • Line 42: warning: exported method Package.ListPendingDependencies should have comment or be unexported (golint)
    • Line 59: warning: exported function GetPackage should have comment or be unexported (golint)
    • go_report/check/golint.go
    • Line 3: warning: exported type GoLint should have comment or be unexported (golint)
    • Line 8: warning: exported method GoLint.Name should have comment or be unexported (golint)
    • go_report/check/utils.go
    • Line 57: warning: exported type Error should have comment or be unexported (golint)
    • Line 62: warning: exported type FileSummary 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!