Preparing report...

Report for github.com/dreadl0ck/zeus

A+    Excellent!    Found 10 issues across 33 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!


gocyclo72%

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.

    • zeus/bootstrap.go
    • Line 89: warning: cyclomatic complexity 21 of function handleCreateCommand() is high (> 15) (gocyclo)
    • zeus/arguments.go
    • Line 64: warning: cyclomatic complexity 16 of function (*CommandsFile).validateArgs() is high (> 15) (gocyclo)
    • zeus/shell.go
    • Line 115: warning: cyclomatic complexity 49 of function handleLine() is high (> 15) (gocyclo)
    • zeus/zeus.go
    • Line 404: warning: cyclomatic complexity 32 of function handleArgs() is high (> 15) (gocyclo)
    • Line 199: warning: cyclomatic complexity 22 of function main() is high (> 15) (gocyclo)
    • Line 100: warning: cyclomatic complexity 21 of function initZeus() is high (> 15) (gocyclo)
    • zeus/builtins.go
    • Line 491: warning: cyclomatic complexity 24 of function handleEditCommand() is high (> 15) (gocyclo)
    • Line 179: warning: cyclomatic complexity 23 of function printSortedCommandKeys() is high (> 15) (gocyclo)
    • zeus/makefile.go
    • Line 63: warning: cyclomatic complexity 20 of function migrateMakefile() is high (> 15) (gocyclo)
    • zeus/command.go
    • Line 520: warning: cyclomatic complexity 17 of function (*command).createCommand() is high (> 15) (gocyclo)
    • Line 150: warning: cyclomatic complexity 16 of function (*command).AtomicRun() is high (> 15) (gocyclo)
    • Line 281: warning: cyclomatic complexity 16 of function (*command).waitForProcess() is high (> 15) (gocyclo)

golint96%

Golint is a linter for Go source code.

    • zeus/utils.go
    • Line 209: warning: if block ends with a return statement, so drop this else and outdent its block (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign96%

IneffAssign detects ineffectual assignments in Go code.


misspell93%

Misspell Finds commonly misspelled English words

    • zeus/utils.go
    • Line 248: warning: "occurence" is a misspelling of "occurrence" (misspell)
    • Line 434: warning: "explicitely" is a misspelling of "explicitly" (misspell)