Preparing report...

Report for github.com/gliderlabs/ssh

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


gocyclo96%

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.

    • ssh/session.go
    • Line 237: warning: cyclomatic complexity 30 of function (*session).handleRequests() is high (> 15) (gocyclo)

golint80%

Golint is a linter for Go source code.

    • ssh/session.go
    • Line 92: warning: exported function DefaultSessionHandler should have comment or be unexported (golint)
    • ssh/ssh.go
    • Line 10: warning: exported type Signal should have comment or be unexported (golint)
    • ssh/tcpip.go
    • Line 97: warning: exported method ForwardedTCPHandler.HandleSSHRequest should have comment or be unexported (golint)
    • ssh/options.go
    • Line 45: warning: exported function KeyboardInteractiveAuth should have comment or be unexported (golint)
    • ssh/server.go
    • Line 18: warning: exported type SubsystemHandler should have comment or be unexported (golint)
    • Line 20: warning: exported var DefaultSubsystemHandlers should have comment or be unexported (golint)
    • Line 22: warning: exported type RequestHandler should have comment or be unexported (golint)
    • Line 24: warning: exported var DefaultRequestHandlers should have comment or be unexported (golint)
    • Line 26: warning: exported type ChannelHandler should have comment or be unexported (golint)
    • Line 28: warning: exported var DefaultChannelHandlers should have comment or be unexported (golint)
    • Line 260: warning: exported method Server.HandleConn should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign68%

IneffAssign detects ineffectual assignments in Go code.

    • ssh/ssh.go
    • Line 120: warning: ak.Marshal undefined (type PublicKey has no field or method Marshal) (ineffassign)
    • Line 121: warning: bk.Marshal undefined (type PublicKey has no field or method Marshal) (ineffassign)
    • Line 120: warning: ak.Marshal undefined (type PublicKey has no field or method Marshal) (ineffassign)
    • Line 121: warning: bk.Marshal undefined (type PublicKey has no field or method Marshal) (ineffassign)
    • ssh/context_test.go
    • Line 12: warning: s.Permissions().Extensions undefined (type Permissions has no field or method Extensions) (ineffassign)
    • Line 13: warning: s.Permissions().Extensions undefined (type Permissions has no field or method Extensions) (ineffassign)
    • Line 17: warning: ctx.Permissions().Extensions undefined (type *Permissions has no field or method Extensions) (ineffassign)
    • ssh/session_test.go
    • Line 77: warning: s.Write undefined (type Session has no field or method Write) (ineffassign)
    • Line 96: warning: s.Stderr undefined (type Session has no field or method Stderr) (ineffassign)
    • Line 115: warning: cannot use s (variable of type Session) as io.Writer value in argument to io.Copy: missing method Write (ineffassign)
    • Line 115: warning: cannot use s (variable of type Session) as io.Reader value in argument to io.Copy: missing method Read (ineffassign)
    • Line 135: warning: cannot use s (variable of type Session) as io.Writer value in argument to io.WriteString: missing method Write (ineffassign)
    • Line 367: warning: cannot use s (variable of type Session) as io.Writer value in argument to io.WriteString: missing method Write (ineffassign)
    • ssh/example_test.go
    • Line 7: warning: cannot find package "." in: (ineffassign)
    • Line 7: warning: could not import github.com/gliderlabs/ssh (invalid package name: "") (ineffassign)
    • ssh/session.go
    • Line 11: warning: cannot find package "." in: (ineffassign)
    • Line 11: warning: could not import github.com/anmitsu/go-shlex (invalid package name: "") (ineffassign)
    • Line 175: warning: sess.SendRequest undefined (type *session has no field or method SendRequest) (ineffassign)
    • Line 179: warning: sess.Close undefined (type *session has no field or method Close) (ineffassign)
    • Line 203: warning: undeclared name: shlex (ineffassign)
    • Line 11: warning: "github.com/anmitsu/go-shlex" imported but not used (ineffassign)
    • Line 11: warning: could not import github.com/anmitsu/go-shlex (invalid package name: "") (ineffassign)
    • Line 175: warning: sess.SendRequest undefined (type *session has no field or method SendRequest) (ineffassign)
    • Line 179: warning: sess.Close undefined (type *session has no field or method Close) (ineffassign)
    • Line 203: warning: undeclared name: shlex (ineffassign)
    • Line 11: warning: "github.com/anmitsu/go-shlex" imported but not used (ineffassign)
    • ssh/agent.go
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: could not import golang.org/x/crypto/ssh (invalid package name: "") (ineffassign)
    • Line 10: warning: could not import golang.org/x/crypto/ssh (invalid package name: "") (ineffassign)
    • ssh/server.go
    • Line 352: warning: k.PublicKey undefined (type Signer has no field or method PublicKey) (ineffassign)
    • Line 352: warning: key.PublicKey undefined (type Signer has no field or method PublicKey) (ineffassign)
    • Line 352: warning: k.PublicKey undefined (type Signer has no field or method PublicKey) (ineffassign)
    • Line 352: warning: key.PublicKey undefined (type Signer has no field or method PublicKey) (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!