Preparing report...

Report for github.com/hexdigest/gounit

A+    Excellent!    Found 6 issues across 15 files

Tweet

gofmt93%

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!


gocyclo86%

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.


golint66%

Golint is a linter for Go source code.

    • gounit/cmd/gounit/cmd_gen.go
    • Line 17: warning: exported type LinesNumbers should have comment or be unexported (golint)
    • Line 18: warning: exported type FunctionsList should have comment or be unexported (golint)
    • Line 33: warning: exported method GenerateCommand.Usage should have comment or be unexported (golint)
    • Line 37: warning: exported method GenerateCommand.FlagSet should have comment or be unexported (golint)
    • Line 57: warning: exported method GenerateCommand.Run should have comment or be unexported (golint)
    • gounit/cmd/gounit/cmd_template.go
    • Line 22: warning: exported type Config should have comment or be unexported (golint)
    • Line 39: warning: exported method TemplateCommand.Usage should have comment or be unexported (golint)
    • Line 58: warning: exported method TemplateCommand.FlagSet should have comment or be unexported (golint)
    • Line 62: warning: exported method TemplateCommand.Run should have comment or be unexported (golint)
    • gounit/command.go
    • Line 11: warning: exported type Command should have comment or be unexported (golint)
    • Line 27: warning: exported function RegisterCommand should have comment or be unexported (golint)
    • Line 35: warning: exported function GetCommand should have comment or be unexported (golint)
    • Line 39: warning: exported function Usage should have comment or be unexported (golint)
    • gounit/errors.go
    • Line 5: warning: exported type GenericError should have comment or be unexported (golint)
    • Line 7: warning: exported method GenericError.Format should have comment or be unexported (golint)
    • Line 15: warning: exported type CommandLineError should have comment or be unexported (golint)
    • gounit/generator.go
    • Line 19: warning: exported var ErrGenerateHeader should have comment or be unexported (golint)
    • Line 34: warning: exported type Options should have comment or be unexported (golint)
    • Line 191: warning: exported method Generator.Source should have comment or be unexported (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!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!