Preparing report...

Report for github.com/gobuffalo/packd

A+    Excellent!    Found 4 issues across 12 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!


golint66%

Golint is a linter for Go source code.

    • packd/memory_box.go
    • Line 27: warning: exported method MemoryBox.Has should have comment or be unexported (golint)
    • Line 32: warning: exported method MemoryBox.List should have comment or be unexported (golint)
    • Line 43: warning: exported method MemoryBox.Open should have comment or be unexported (golint)
    • Line 69: warning: exported method MemoryBox.FindString should have comment or be unexported (golint)
    • Line 74: warning: exported method MemoryBox.Find should have comment or be unexported (golint)
    • Line 101: warning: exported method MemoryBox.AddString should have comment or be unexported (golint)
    • Line 105: warning: exported method MemoryBox.AddBytes should have comment or be unexported (golint)
    • Line 110: warning: exported method MemoryBox.Walk should have comment or be unexported (golint)
    • Line 137: warning: exported method MemoryBox.WalkPrefix should have comment or be unexported (golint)
    • Line 146: warning: exported method MemoryBox.Remove should have comment or be unexported (golint)
    • packd/internal/takeon/github.com/markbates/errx/errx.go
    • Line 3: warning: comment on exported type Wrapper should be of the form "Wrapper ..." (with optional leading article) (golint)
    • Line 8: warning: comment on exported type Causer should be of the form "Causer ..." (with optional leading article) (golint)
    • Line 13: warning: exported function Unwrap should have comment or be unexported (golint)
    • Line 23: warning: exported var Cause should have comment or be unexported (golint)
    • packd/interfaces.go
    • Line 10: warning: exported type WalkFunc should have comment or be unexported (golint)
    • Line 24: warning: exported type Haser should have comment or be unexported (golint)
    • Line 28: warning: exported type Walker should have comment or be unexported (golint)
    • Line 32: warning: exported type Walkable should have comment or be unexported (golint)
    • Line 37: warning: exported type Finder should have comment or be unexported (golint)
    • Line 42: warning: exported type HTTPBox should have comment or be unexported (golint)
    • Line 46: warning: exported type Lister should have comment or be unexported (golint)
    • Line 50: warning: exported type Addable should have comment or be unexported (golint)
    • Line 55: warning: exported type SimpleFile should have comment or be unexported (golint)
    • Line 62: warning: exported type HTTPFile should have comment or be unexported (golint)
    • Line 70: warning: exported type File should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


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!