Preparing report...

Report for github.com/edgexfoundry/device-random

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!


gocyclo83%

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.


golint50%

Golint is a linter for Go source code.

    • device-random/version.go
    • Line 7: warning: don't use an underscore in package name (golint)
    • Line 9: warning: comment on exported var Version should be of the form "Version ..." (golint)
    • device-random/driver/randomdevice.go
    • Line 39: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 45: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 51: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • device-random/driver/randomdriver.go
    • Line 7: warning: package comment should be of the form "Package driver ..." (golint)
    • Line 25: warning: exported type RandomDriver should have comment or be unexported (golint)
    • Line 31: warning: exported function NewProtocolDriver should have comment or be unexported (golint)
    • Line 38: warning: exported method RandomDriver.DisconnectDevice should have comment or be unexported (golint)
    • Line 43: warning: exported method RandomDriver.Initialize should have comment or be unexported (golint)
    • Line 49: warning: exported method RandomDriver.HandleReadCommands should have comment or be unexported (golint)
    • Line 88: warning: exported method RandomDriver.HandleWriteCommands should have comment or be unexported (golint)
    • Line 162: warning: exported method RandomDriver.Stop should have comment or be unexported (golint)
    • Line 167: warning: exported method RandomDriver.AddDevice should have comment or be unexported (golint)
    • Line 172: warning: exported method RandomDriver.UpdateDevice should have comment or be unexported (golint)
    • Line 177: warning: exported method RandomDriver.RemoveDevice should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign83%

IneffAssign detects ineffectual assignments in Go code.


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!