Preparing report...

Report for github.com/prologic/tube

A+    Excellent!    Found 9 issues across 20 files

Tweet

gofmt90%

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!


gocyclo95%

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.

    • tube/app/app.go
    • Line 363: warning: cyclomatic complexity 19 of function (*App).importHandler() is high (> 15) (gocyclo)

golint70%

Golint is a linter for Go source code.

    • tube/importers/importer.go
    • Line 9: warning: exported var ErrUnsupportedVideoURL should have comment or be unexported (golint)
    • Line 12: warning: exported type VideoInfo should have comment or be unexported (golint)
    • Line 21: warning: exported type Importer should have comment or be unexported (golint)
    • Line 25: warning: exported function NewImporter should have comment or be unexported (golint)
    • tube/importers/vimeo_importer.go
    • Line 10: warning: exported type VimeoImporter should have comment or be unexported (golint)
    • Line 12: warning: exported method VimeoImporter.GetVideoInfo should have comment or be unexported (golint)
    • tube/app/bitcask_store.go
    • Line 57: warning: don't use underscores in Go names; method GetViews_ should be GetViews (golint)
    • Line 74: warning: don't use underscores in Go names; method IncView_ should be IncView (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!


misspell95%

Misspell Finds commonly misspelled English words