Preparing report...

Report for github.com/alash3al/exeq

A    Great!    Found 12 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.


golint14%

Golint is a linter for Go source code.

    • exeq/internals/config/config.go
    • Line 11: warning: exported type Config should have comment or be unexported (golint)
    • Line 24: warning: exported function BootFromFile should have comment or be unexported (golint)
    • Line 45: warning: exported method Config.LookupMacro should have comment or be unexported (golint)
    • Line 51: warning: exported method Config.SetupMounts should have comment or be unexported (golint)
    • exeq/internals/queue/job.go
    • Line 15: warning: exported type JobStats should have comment or be unexported (golint)
    • Line 20: warning: exported type Job should have comment or be unexported (golint)
    • Line 40: warning: exported method Job.Run should have comment or be unexported (golint)
    • Line 72: warning: exported method Job.IsRunning should have comment or be unexported (golint)
    • Line 76: warning: exported method Job.HasFinished should have comment or be unexported (golint)
    • exeq/internals/commands/queue.go
    • Line 16: warning: exported function QueueWork should have comment or be unexported (golint)
    • Line 43: warning: exported function QueueList should have comment or be unexported (golint)
    • Line 96: warning: exported function QueueStats should have comment or be unexported (golint)
    • exeq/internals/queue/driver.go
    • Line 10: warning: exported type Driver should have comment or be unexported (golint)
    • Line 19: warning: exported type Stats should have comment or be unexported (golint)
    • Line 32: warning: exported function Register should have comment or be unexported (golint)
    • Line 45: warning: exported function Open should have comment or be unexported (golint)
    • exeq/internals/config/macro.go
    • Line 18: warning: exported type MacroConfig should have comment or be unexported (golint)
    • Line 32: warning: exported method MacroConfig.ParseAndSplit should have comment or be unexported (golint)
    • exeq/internals/queue/drivers/rmq/driver.go
    • Line 25: warning: exported type Redis should have comment or be unexported (golint)
    • Line 33: warning: exported method Redis.Open should have comment or be unexported (golint)
    • Line 112: warning: exported method Redis.Enqueue should have comment or be unexported (golint)
    • Line 124: warning: exported method Redis.Err should have comment or be unexported (golint)
    • Line 128: warning: exported method Redis.Stats should have comment or be unexported (golint)
    • Line 143: warning: exported method Redis.List should have comment or be unexported (golint)
    • Line 160: warning: exported method Redis.ListenAndConsume 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!


misspell85%

Misspell Finds commonly misspelled English words