Preparing report...

Report for github.com/jmcfarlane/notable

A+    Excellent!    Found 8 issues across 26 files

Tweet

gofmt92%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


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.


golint96%

Golint is a linter for Go source code.


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign84%

IneffAssign detects ineffectual assignments in Go code.

    • notable/app_test.go
    • Line 59: warning: ineffectual assignment to err (ineffassign)
    • Line 85: warning: ineffectual assignment to err (ineffassign)
    • Line 99: warning: ineffectual assignment to err (ineffassign)
    • Line 105: warning: ineffectual assignment to err (ineffassign)
    • Line 118: warning: ineffectual assignment to err (ineffassign)
    • Line 138: warning: ineffectual assignment to err (ineffassign)
    • Line 150: warning: ineffectual assignment to err (ineffassign)
    • Line 168: warning: ineffectual assignment to err (ineffassign)
    • Line 187: warning: ineffectual assignment to err (ineffassign)

misspell92%

Misspell Finds commonly misspelled English words

    • notable/rice-box.go
    • Line 208: warning: "stroy" is a misspelling of "story" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 550: warning: "ther" is a misspelling of "there" (misspell)
    • Line 550: warning: "ect" is a misspelling of "etc" (misspell)
    • Line 592: warning: "alse" is a misspelling of "else" (misspell)
    • Line 796: warning: "usefull" is a misspelling of "useful" (misspell)