Preparing report...

Report for github.com/transparencylog/tl

A+    Excellent!    Found 11 issues across 14 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!


gocyclo92%

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.


golint28%

Golint is a linter for Go source code.

    • tl/cmd/root.go
    • Line 48: warning: exported function Execute should have comment or be unexported (golint)
    • tl/config/config.go
    • Line 13: warning: exported var Version should have comment or be unexported (golint)
    • Line 14: warning: exported var Commit should have comment or be unexported (golint)
    • Line 15: warning: exported var Date should have comment or be unexported (golint)
    • Line 17: warning: exported var ServerURL should have comment or be unexported (golint)
    • Line 18: warning: exported var ServerKey should have comment or be unexported (golint)
    • tl/clientcache/badger/badger.go
    • Line 18: warning: exported var ErrNoKey should have comment or be unexported (golint)
    • Line 20: warning: exported type ClientCache should have comment or be unexported (golint)
    • Line 26: warning: exported function NewClientCache should have comment or be unexported (golint)
    • Line 36: warning: exported method ClientCache.ReadRemote should have comment or be unexported (golint)
    • Line 59: warning: exported method ClientCache.ReadConfig should have comment or be unexported (golint)
    • Line 73: warning: exported method ClientCache.WriteConfig should have comment or be unexported (golint)
    • Line 80: warning: exported method ClientCache.ReadCache should have comment or be unexported (golint)
    • Line 84: warning: exported method ClientCache.WriteCache should have comment or be unexported (golint)
    • Line 88: warning: exported method ClientCache.Log should have comment or be unexported (golint)
    • Line 92: warning: exported method ClientCache.SecurityError should have comment or be unexported (golint)
    • tl/sumdb/test.go
    • Line 47: warning: exported method TestServer.Signed should have comment or be unexported (golint)
    • Line 64: warning: exported method TestServer.ReadRecords should have comment or be unexported (golint)
    • Line 78: warning: exported method TestServer.Lookup should have comment or be unexported (golint)
    • Line 123: warning: exported method TestServer.ReadTileData should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign92%

IneffAssign detects ineffectual assignments in Go code.


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!