Preparing report...

Report for github.com/tam7t/cautious-pancake

A+    Excellent!    Found 3 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!


gocyclo80%

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.


golint60%

Golint is a linter for Go source code.

    • cautious-pancake/fixtures/fuzzable.go
    • Line 22: warning: exported function NoPrint should have comment or be unexported (golint)
    • Line 26: warning: exported function NoNet should have comment or be unexported (golint)
    • Line 31: warning: exported function NoGlobalWrite should have comment or be unexported (golint)
    • Line 35: warning: comment on exported function NoDynamicCall should be of the form "NoDynamicCall ..." (golint)
    • Line 41: warning: exported type Foo should have comment or be unexported (golint)
    • Line 45: warning: exported function NoInterface should have comment or be unexported (golint)
    • Line 49: warning: exported function YesAnonymousDynamicCall should have comment or be unexported (golint)
    • Line 56: warning: exported function NoGlobalRead should have comment or be unexported (golint)
    • Line 60: warning: exported function YesFuncParam should have comment or be unexported (golint)
    • Line 68: warning: exported function Yes should have comment or be unexported (golint)
    • Line 72: warning: exported function YesManipulate should have comment or be unexported (golint)
    • Line 76: warning: exported function YesAppend should have comment or be unexported (golint)
    • Line 80: warning: exported function YesPanicArray should have comment or be unexported (golint)
    • Line 85: warning: exported function YesPanicNil should have comment or be unexported (golint)
    • Line 90: warning: exported function YesPanic should have comment or be unexported (golint)
    • Line 94: warning: exported function YesMaybePanic should have comment or be unexported (golint)
    • Line 100: warning: exported type MyStuff should have comment or be unexported (golint)
    • Line 104: warning: exported method MyStuff.YesParse should have comment or be unexported (golint)
    • Line 108: warning: exported method MyStuff.YesMultArgs should have comment or be unexported (golint)
    • Line 112: warning: exported method MyStuff.NoWrite should have comment or be unexported (golint)
    • Line 116: warning: exported function YesParser should have comment or be unexported (golint)
    • Line 122: warning: exported function NoWriter should have comment or be unexported (golint)
    • Line 130: warning: exported function YesRead should have comment or be unexported (golint)
    • Line 136: warning: exported function YesLog should have comment or be unexported (golint)
    • Line 140: warning: exported function YesErr should have comment or be unexported (golint)
    • Line 145: warning: exported function NoWriteErr should have comment or be unexported (golint)
    • Line 149: warning: exported function YesFmtErr should have comment or be unexported (golint)
    • Line 156: warning: exported function YesVariadic 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!