Preparing report...

Report for github.com/luandnh/goesl

(v1.0.2)

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


gocyclo85%

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.

    • response.go
    • Line 81: warning: cyclomatic complexity 27 of function (*ESLConnection).ParseResponse() is high (> 15) (gocyclo)

golint14%

Golint is a linter for Go source code.

    • utils.go
    • Line 14: warning: exported function IsExistInSlice should have comment or be unexported (golint)
    • client.go
    • Line 62: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • command.go
    • Line 14: warning: exported method ESLConnection.Api should have comment or be unexported (golint)
    • Line 18: warning: exported method ESLConnection.BgApi should have comment or be unexported (golint)
    • Line 22: warning: exported method ESLConnection.Exit should have comment or be unexported (golint)
    • connection.go
    • Line 25: warning: comment on exported type ESLConnection should be of the form "ESLConnection ..." (with optional leading article) (golint)
    • Line 41: warning: exported const EndOfMessage should have comment or be unexported (golint)
    • Line 78: warning: exported method ESLConnection.Dial should have comment or be unexported (golint)
    • logger.go
    • Line 16: warning: exported type Logger should have comment or be unexported (golint)
    • Line 23: warning: exported type NilLogger should have comment or be unexported (golint)
    • Line 24: warning: exported type NormalLogger should have comment or be unexported (golint)
    • Line 26: warning: exported method NormalLogger.Debug should have comment or be unexported (golint)
    • Line 29: warning: exported method NormalLogger.Info should have comment or be unexported (golint)
    • Line 32: warning: exported method NormalLogger.Warn should have comment or be unexported (golint)
    • Line 39: warning: exported method NilLogger.Debug should have comment or be unexported (golint)
    • Line 40: warning: exported method NilLogger.Info should have comment or be unexported (golint)
    • Line 41: warning: exported method NilLogger.Warn should have comment or be unexported (golint)
    • response.go
    • Line 28: warning: don't use underscores in Go names; const ContentType_AuthRequest should be ContentTypeAuthRequest (golint)
    • Line 28: warning: exported const ContentType_AuthRequest should have comment (or a comment on this block) or be unexported (golint)
    • Line 29: warning: don't use underscores in Go names; const ContentType_Reply should be ContentTypeReply (golint)
    • Line 30: warning: don't use underscores in Go names; const ContentType_APIResponse should be ContentTypeAPIResponse (golint)
    • Line 31: warning: don't use underscores in Go names; const ContentType_Disconnect should be ContentTypeDisconnect (golint)
    • Line 32: warning: comment on exported const ContentType_EventPlain should be of the form "ContentType_EventPlain ..." (golint)
    • Line 33: warning: don't use underscores in Go names; const ContentType_EventPlain should be ContentTypeEventPlain (golint)
    • Line 34: warning: don't use underscores in Go names; const ContentType_EventJSON should be ContentTypeEventJSON (golint)
    • Line 35: warning: don't use underscores in Go names; const ContentType_EventXML should be ContentTypeEventXML (golint)
    • Line 39: warning: exported var ReadBufferSize should have comment or be unexported (golint)
    • Line 51: warning: exported type ESLResponse should have comment or be unexported (golint)
    • Line 56: warning: comment on exported method ESLResponse.HasHeader should be of the form "HasHeader ..." (golint)
    • Line 81: warning: exported method ESLConnection.ParseResponse should have comment or be unexported (golint)
    • Line 111: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (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!