Preparing report...

Report for github.com/skx/gobasic

A+    Excellent!    Found 4 issues across 27 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!


gocyclo85%

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.

    • gobasic/eval/eval_test.go
    • Line 808: warning: cyclomatic complexity 20 of function TestIF() is high (> 15) (gocyclo)
    • Line 186: warning: cyclomatic complexity 19 of function TestDim() is high (> 15) (gocyclo)
    • gobasic/eval/eval.go
    • Line 807: warning: cyclomatic complexity 38 of function (*Interpreter).compare() is high (> 15) (gocyclo)
    • Line 2442: warning: cyclomatic complexity 26 of function (*Interpreter).RunOnce() is high (> 15) (gocyclo)
    • Line 667: warning: cyclomatic complexity 26 of function (*Interpreter).expr() is high (> 15) (gocyclo)
    • Line 157: warning: cyclomatic complexity 24 of function New() is high (> 15) (gocyclo)
    • Line 433: warning: cyclomatic complexity 23 of function (*Interpreter).factor() is high (> 15) (gocyclo)
    • Line 1805: warning: cyclomatic complexity 23 of function (*Interpreter).runIF() is high (> 15) (gocyclo)
    • Line 1163: warning: cyclomatic complexity 19 of function (*Interpreter).callBuiltin() is high (> 15) (gocyclo)
    • Line 1425: warning: cyclomatic complexity 19 of function (*Interpreter).runForLoop() is high (> 15) (gocyclo)
    • Line 1290: warning: cyclomatic complexity 18 of function (*Interpreter).runDIM() is high (> 15) (gocyclo)
    • Line 950: warning: cyclomatic complexity 18 of function (*Interpreter).parseDefFN() is high (> 15) (gocyclo)
    • Line 578: warning: cyclomatic complexity 17 of function (*Interpreter).term() is high (> 15) (gocyclo)

golint100%

Golint is a linter for Go source code.

No problems detected. Good job!


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!