Preparing report...

Report for github.com/itchyny/gojq

(v0.12.17)

A+    Excellent!    Found 16 issues across 51 files

Tweet

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!


gofmt100%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command

No problems detected. Good job!


gocyclo68%

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.

    • cli/cli_test.go
    • Line 23: warning: cyclomatic complexity 27 of function TestCliRun() is high (> 15) (gocyclo)
    • operator.go
    • Line 97: warning: cyclomatic complexity 26 of function (Operator).GoString() is high (> 15) (gocyclo)
    • Line 41: warning: cyclomatic complexity 25 of function (Operator).String() is high (> 15) (gocyclo)
    • Line 155: warning: cyclomatic complexity 25 of function (Operator).getFunc() is high (> 15) (gocyclo)
    • Line 210: warning: cyclomatic complexity 19 of function binopTypeSwitch() is high (> 15) (gocyclo)
    • normalize.go
    • Line 28: warning: cyclomatic complexity 25 of function normalizeNumbers() is high (> 15) (gocyclo)
    • encoder.go
    • Line 99: warning: cyclomatic complexity 19 of function (*encoder).encodeString() is high (> 15) (gocyclo)
    • execute.go
    • Line 21: warning: cyclomatic complexity 106 of function (*env).Next() is high (> 15) (gocyclo)
    • cli/cli.go
    • Line 99: warning: cyclomatic complexity 46 of function (*cli).runInternal() is high (> 15) (gocyclo)
    • lexer.go
    • Line 48: warning: cyclomatic complexity 46 of function (*lexer).Lex() is high (> 15) (gocyclo)
    • Line 399: warning: cyclomatic complexity 25 of function (*lexer).scanString() is high (> 15) (gocyclo)
    • code.go
    • Line 43: warning: cyclomatic complexity 31 of function (opcode).String() is high (> 15) (gocyclo)
    • cli/flags.go
    • Line 10: warning: cyclomatic complexity 51 of function parseFlags() is high (> 15) (gocyclo)
    • compiler.go
    • Line 899: warning: cyclomatic complexity 43 of function (*compiler).compileFunc() is high (> 15) (gocyclo)
    • Line 816: warning: cyclomatic complexity 22 of function (*compiler).compileTerm() is high (> 15) (gocyclo)
    • Line 586: warning: cyclomatic complexity 20 of function (*compiler).compilePattern() is high (> 15) (gocyclo)
    • Line 376: warning: cyclomatic complexity 18 of function (*compiler).compileQuery() is high (> 15) (gocyclo)
    • query.go
    • Line 212: warning: cyclomatic complexity 23 of function (*Term).writeTo() is high (> 15) (gocyclo)
    • Line 267: warning: cyclomatic complexity 16 of function (*Term).minify() is high (> 15) (gocyclo)
    • term_type.go
    • Line 31: warning: cyclomatic complexity 21 of function (TermType).GoString() is high (> 15) (gocyclo)
    • func.go
    • Line 455: warning: cyclomatic complexity 18 of function funcAdd() is high (> 15) (gocyclo)
    • Line 989: warning: cyclomatic complexity 17 of function funcIndex2() is high (> 15) (gocyclo)
    • cli/stream.go
    • Line 31: warning: cyclomatic complexity 23 of function (*jsonStream).next() is high (> 15) (gocyclo)
    • cli/encoder.go
    • Line 101: warning: cyclomatic complexity 21 of function (*encoder).encodeString() is high (> 15) (gocyclo)
    • option_test.go
    • Line 377: warning: cyclomatic complexity 20 of function TestWithFunctionDuplicateName() is high (> 15) (gocyclo)
    • Line 460: warning: cyclomatic complexity 19 of function TestWithFunctionMultipleArities() is high (> 15) (gocyclo)
    • Line 310: warning: cyclomatic complexity 17 of function TestWithFunction() is high (> 15) (gocyclo)

ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!