Preparing report...

Report for github.com/davecheney/gcvis

A+    Excellent!    Found 6 issues across 10 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!


golint40%

Golint is a linter for Go source code.

    • gcvis/parser.go
    • Line 11: warning: exported const GCRegexpGo14 should have comment (or a comment on this block) or be unexported (golint)
    • Line 25: warning: exported type Parser should have comment or be unexported (golint)
    • Line 37: warning: exported function NewParser should have comment or be unexported (golint)
    • Line 47: warning: exported method Parser.Run should have comment or be unexported (golint)
    • gcvis/subcommand.go
    • Line 11: warning: exported type SubCommand should have comment or be unexported (golint)
    • Line 20: warning: exported function NewSubCommand should have comment or be unexported (golint)
    • Line 40: warning: exported method SubCommand.Run should have comment or be unexported (golint)
    • Line 45: warning: exported method SubCommand.Err should have comment or be unexported (golint)
    • gcvis/template.go
    • Line 4: warning: exported const GCVIS_TMPL should have comment (or a comment on this block) or be unexported (golint)
    • gcvis/graph.go
    • Line 12: warning: exported type Graph should have comment or be unexported (golint)
    • Line 28: warning: exported var StartTime should have comment or be unexported (golint)
    • Line 30: warning: exported function NewGraph should have comment or be unexported (golint)
    • Line 63: warning: exported method Graph.AddGCTraceGraphPoint should have comment or be unexported (golint)
    • Line 83: warning: exported method Graph.AddScavengerGraphPoint should have comment or be unexported (golint)
    • gcvis/http_server.go
    • Line 13: warning: exported type HttpServer should have comment or be unexported (golint)
    • Line 22: warning: exported function NewHttpServer should have comment or be unexported (golint)
    • Line 32: warning: exported method HttpServer.Start should have comment or be unexported (golint)
    • Line 56: warning: exported method HttpServer.Close should have comment or be unexported (golint)
    • Line 60: warning: exported method HttpServer.Url should have comment or be unexported (golint)
    • Line 64: warning: exported method HttpServer.Listener should have comment or be unexported (golint)
    • gcvis/main.go
    • Line 40: warning: if block ends with a return statement, so drop this else and outdent its block (golint)

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!


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell90%

Misspell Finds commonly misspelled English words