Preparing report...

Report for github.com/heyvito/pine

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


golint50%

Golint is a linter for Go source code.

    • pine/generated_functions.go
    • Line 5: warning: exported type Writer should have comment or be unexported (golint)
    • Line 25: warning: exported method PineWriter.Bug should have comment or be unexported (golint)
    • Line 29: warning: exported method PineWriter.BugExtra should have comment or be unexported (golint)
    • Line 33: warning: exported method PineExtraWriter.Bug should have comment or be unexported (golint)
    • Line 37: warning: exported method PineWriter.Disk should have comment or be unexported (golint)
    • Line 41: warning: exported method PineWriter.DiskExtra should have comment or be unexported (golint)
    • Line 45: warning: exported method PineExtraWriter.Disk should have comment or be unexported (golint)
    • Line 53: warning: exported method PineWriter.ErrorExtra should have comment or be unexported (golint)
    • Line 61: warning: exported method PineWriter.Finish should have comment or be unexported (golint)
    • Line 65: warning: exported method PineWriter.FinishExtra should have comment or be unexported (golint)
    • Line 69: warning: exported method PineExtraWriter.Finish should have comment or be unexported (golint)
    • Line 73: warning: exported method PineWriter.Info should have comment or be unexported (golint)
    • Line 77: warning: exported method PineWriter.InfoExtra should have comment or be unexported (golint)
    • Line 81: warning: exported method PineExtraWriter.Info should have comment or be unexported (golint)
    • Line 85: warning: exported method PineWriter.Lock should have comment or be unexported (golint)
    • Line 89: warning: exported method PineWriter.LockExtra should have comment or be unexported (golint)
    • Line 93: warning: exported method PineExtraWriter.Lock should have comment or be unexported (golint)
    • Line 97: warning: exported method PineWriter.Plug should have comment or be unexported (golint)
    • Line 101: warning: exported method PineWriter.PlugExtra should have comment or be unexported (golint)
    • Line 105: warning: exported method PineExtraWriter.Plug should have comment or be unexported (golint)
    • Line 109: warning: exported method PineWriter.Secure should have comment or be unexported (golint)
    • Line 113: warning: exported method PineWriter.SecureExtra should have comment or be unexported (golint)
    • Line 117: warning: exported method PineExtraWriter.Secure should have comment or be unexported (golint)
    • Line 121: warning: exported method PineWriter.Sleep should have comment or be unexported (golint)
    • Line 125: warning: exported method PineWriter.SleepExtra should have comment or be unexported (golint)
    • Line 129: warning: exported method PineExtraWriter.Sleep should have comment or be unexported (golint)
    • Line 133: warning: exported method PineWriter.Spawn should have comment or be unexported (golint)
    • Line 137: warning: exported method PineWriter.SpawnExtra should have comment or be unexported (golint)
    • Line 141: warning: exported method PineExtraWriter.Spawn should have comment or be unexported (golint)
    • Line 145: warning: exported method PineWriter.Success should have comment or be unexported (golint)
    • Line 149: warning: exported method PineWriter.SuccessExtra should have comment or be unexported (golint)
    • Line 153: warning: exported method PineExtraWriter.Success should have comment or be unexported (golint)
    • Line 157: warning: exported method PineWriter.Terminate should have comment or be unexported (golint)
    • Line 161: warning: exported method PineWriter.TerminateExtra should have comment or be unexported (golint)
    • Line 165: warning: exported method PineExtraWriter.Terminate should have comment or be unexported (golint)
    • Line 169: warning: exported method PineWriter.Thread should have comment or be unexported (golint)
    • Line 173: warning: exported method PineWriter.ThreadExtra should have comment or be unexported (golint)
    • Line 177: warning: exported method PineExtraWriter.Thread should have comment or be unexported (golint)
    • Line 181: warning: exported method PineWriter.Timing should have comment or be unexported (golint)
    • Line 185: warning: exported method PineWriter.TimingExtra should have comment or be unexported (golint)
    • Line 189: warning: exported method PineExtraWriter.Timing should have comment or be unexported (golint)
    • Line 193: warning: exported method PineWriter.WTF should have comment or be unexported (golint)
    • Line 197: warning: exported method PineWriter.WTFExtra should have comment or be unexported (golint)
    • Line 201: warning: exported method PineExtraWriter.WTF should have comment or be unexported (golint)
    • Line 205: warning: exported method PineWriter.Warn should have comment or be unexported (golint)
    • Line 209: warning: exported method PineWriter.WarnExtra should have comment or be unexported (golint)
    • Line 213: warning: exported method PineExtraWriter.Warn should have comment or be unexported (golint)
    • Line 217: warning: exported method PineWriter.Fatal should have comment or be unexported (golint)
    • Line 222: warning: exported method PineWriter.FatalExtra should have comment or be unexported (golint)
    • Line 227: warning: exported method PineExtraWriter.Fatal should have comment or be unexported (golint)
    • pine/pine.go
    • Line 1: warning: package comment should be of the form "Package pine ..." (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!