Preparing report...

Report for github.com/therecipe/qt

A    Great!    Found 119 issues across 487 files

Tweet

gofmt98%

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.

    • qt/internal/cmd/minimal/minimal.go
    • Line 23: warning: cyclomatic complexity 123 of function Minimal() is high (> 15) (gocyclo)
    • Line 467: warning: cyclomatic complexity 24 of function exportFunction() is high (> 15) (gocyclo)
    • Line 403: warning: cyclomatic complexity 22 of function exportClass() is high (> 15) (gocyclo)
    • qt/internal/binding/parser/class_fix.go
    • Line 248: warning: cyclomatic complexity 49 of function (*Class).fixBases() is high (> 15) (gocyclo)
    • Line 84: warning: cyclomatic complexity 33 of function (*Class).fixGeneral_Version() is high (> 15) (gocyclo)
    • Line 425: warning: cyclomatic complexity 30 of function getBasesFromHeader() is high (> 15) (gocyclo)
    • Line 41: warning: cyclomatic complexity 24 of function (*Class).fixEnums() is high (> 15) (gocyclo)
    • qt/internal/binding/templater/template_cgo_qmake.go
    • Line 265: warning: cyclomatic complexity 103 of function createMakefile() is high (> 15) (gocyclo)
    • Line 521: warning: cyclomatic complexity 93 of function createCgo() is high (> 15) (gocyclo)
    • Line 82: warning: cyclomatic complexity 42 of function isAlreadyCached() is high (> 15) (gocyclo)
    • Line 805: warning: cyclomatic complexity 37 of function cgoFileNamesRecursive() is high (> 15) (gocyclo)
    • Line 204: warning: cyclomatic complexity 25 of function createProject() is high (> 15) (gocyclo)
    • Line 33: warning: cyclomatic complexity 19 of function cgoTemplate() is high (> 15) (gocyclo)
    • qt/internal/binding/parser/function_fix.go
    • Line 435: warning: cyclomatic complexity 40 of function (*Class).FixGenericHelper() is high (> 15) (gocyclo)
    • Line 319: warning: cyclomatic complexity 32 of function (*Function).fixGenericInput() is high (> 15) (gocyclo)
    • Line 76: warning: cyclomatic complexity 24 of function (*Function).fixGeneral_Version() is high (> 15) (gocyclo)
    • Line 231: warning: cyclomatic complexity 17 of function (*Function).fixGenericOutput() is high (> 15) (gocyclo)
    • Line 21: warning: cyclomatic complexity 16 of function (*Function).fixGeneral() is high (> 15) (gocyclo)
    • qt/internal/cmd/moc/test/qtmoc_test.go
    • Line 542: warning: cyclomatic complexity 45 of function TestProperties() is high (> 15) (gocyclo)
    • Line 1021: warning: cyclomatic complexity 44 of function TestPropertiesMap() is high (> 15) (gocyclo)
    • Line 798: warning: cyclomatic complexity 39 of function TestPropertiesList() is high (> 15) (gocyclo)
    • Line 1541: warning: cyclomatic complexity 26 of function TestSlotOutput() is high (> 15) (gocyclo)
    • Line 1447: warning: cyclomatic complexity 23 of function TestSlotInput() is high (> 15) (gocyclo)
    • Line 1272: warning: cyclomatic complexity 23 of function TestSignalInput() is high (> 15) (gocyclo)
    • Line 1366: warning: cyclomatic complexity 19 of function TestSignalListInput() is high (> 15) (gocyclo)
    • qt/internal/binding/templater/function_cpp.go
    • Line 423: warning: cyclomatic complexity 64 of function cppFunctionBodyInternal() is high (> 15) (gocyclo)
    • Line 263: warning: cyclomatic complexity 52 of function cppFunctionBody() is high (> 15) (gocyclo)
    • Line 184: warning: cyclomatic complexity 18 of function cppFunctionBodyWithGuards() is high (> 15) (gocyclo)
    • qt/internal/binding/converter/input.go
    • Line 263: warning: cyclomatic complexity 74 of function cppInput() is high (> 15) (gocyclo)
    • Line 12: warning: cyclomatic complexity 64 of function GoInput() is high (> 15) (gocyclo)
    • Line 517: warning: cyclomatic complexity 52 of function GoInputJS() is high (> 15) (gocyclo)
    • qt/core/core.go
    • Line 37551: warning: cyclomatic complexity 68 of function NewQVariant1() is high (> 15) (gocyclo)
    • Line 37748: warning: cyclomatic complexity 39 of function (*QVariant).ToInterface() is high (> 15) (gocyclo)
    • Line 37831: warning: cyclomatic complexity 27 of function (*QVariant).ToGoType() is high (> 15) (gocyclo)
    • Line 37711: warning: cyclomatic complexity 16 of function isZero() is high (> 15) (gocyclo)
    • qt/internal/binding/files/utils-qml.go
    • Line 269: warning: cyclomatic complexity 46 of function (*QJSEngine).fromJsToRef() is high (> 15) (gocyclo)
    • Line 457: warning: cyclomatic complexity 35 of function (*QJSEngine).newGoType() is high (> 15) (gocyclo)
    • Line 144: warning: cyclomatic complexity 22 of function Z_wrapperFunction() is high (> 15) (gocyclo)
    • Line 590: warning: cyclomatic complexity 16 of function isZero() is high (> 15) (gocyclo)
    • qt/internal/binding/converter/output.go
    • Line 666: warning: cyclomatic complexity 103 of function _cppOutput() is high (> 15) (gocyclo)
    • Line 1018: warning: cyclomatic complexity 66 of function goOutputJS() is high (> 15) (gocyclo)
    • Line 323: warning: cyclomatic complexity 54 of function _cgoOutput() is high (> 15) (gocyclo)
    • Line 18: warning: cyclomatic complexity 41 of function goOutput() is high (> 15) (gocyclo)
    • Line 530: warning: cyclomatic complexity 33 of function CppOutput() is high (> 15) (gocyclo)
    • Line 193: warning: cyclomatic complexity 18 of function goOutputFailed() is high (> 15) (gocyclo)
    • qt/interop/interop.go
    • Line 269: warning: cyclomatic complexity 46 of function (*PseudoQJSEngine).fromJsToRef() is high (> 15) (gocyclo)
    • Line 457: warning: cyclomatic complexity 35 of function (*PseudoQJSEngine).newGoType() is high (> 15) (gocyclo)
    • Line 144: warning: cyclomatic complexity 22 of function Z_wrapperFunction() is high (> 15) (gocyclo)
    • Line 590: warning: cyclomatic complexity 16 of function isZero() is high (> 15) (gocyclo)
    • qt/qml/utils-qml.go
    • Line 269: warning: cyclomatic complexity 46 of function (*QJSEngine).fromJsToRef() is high (> 15) (gocyclo)
    • Line 457: warning: cyclomatic complexity 35 of function (*QJSEngine).newGoType() is high (> 15) (gocyclo)
    • Line 144: warning: cyclomatic complexity 22 of function Z_wrapperFunction() is high (> 15) (gocyclo)
    • Line 590: warning: cyclomatic complexity 16 of function isZero() is high (> 15) (gocyclo)
    • qt/internal/cmd/moc/moc.go
    • Line 88: warning: cyclomatic complexity 101 of function moc() is high (> 15) (gocyclo)
    • Line 474: warning: cyclomatic complexity 62 of function parse() is high (> 15) (gocyclo)
    • Line 817: warning: cyclomatic complexity 56 of function cppTypeFromGoType() is high (> 15) (gocyclo)
    • qt/internal/cmd/cmd.go
    • Line 273: warning: cyclomatic complexity 83 of function virtual() is high (> 15) (gocyclo)
    • Line 573: warning: cyclomatic complexity 66 of function BuildEnv() is high (> 15) (gocyclo)
    • Line 99: warning: cyclomatic complexity 58 of function InitEnv() is high (> 15) (gocyclo)
    • Line 22: warning: cyclomatic complexity 20 of function ParseFlags() is high (> 15) (gocyclo)
    • qt/internal/binding/parser/function.go
    • Line 270: warning: cyclomatic complexity 154 of function (*Function).IsSupported() is high (> 15) (gocyclo)
    • Line 96: warning: cyclomatic complexity 19 of function (*Function).PossiblePolymorphicDerivations() is high (> 15) (gocyclo)
    • Line 145: warning: cyclomatic complexity 17 of function (*Function).PossibleDerivationsReversedAndRemovedPure() is high (> 15) (gocyclo)
    • qt/internal/binding/converter/type.go
    • Line 13: warning: cyclomatic complexity 62 of function goType() is high (> 15) (gocyclo)
    • Line 380: warning: cyclomatic complexity 58 of function cppType() is high (> 15) (gocyclo)
    • Line 248: warning: cyclomatic complexity 24 of function cgoType() is high (> 15) (gocyclo)
    • qt/internal/binding/parser/helper.go
    • Line 256: warning: cyclomatic complexity 41 of function shouldBuildForTarget() is high (> 15) (gocyclo)
    • Line 384: warning: cyclomatic complexity 28 of function GetLibs() is high (> 15) (gocyclo)
    • Line 548: warning: cyclomatic complexity 19 of function SortedClassNamesForModule() is high (> 15) (gocyclo)
    • qt/internal/binding/converter/header.go
    • Line 163: warning: cyclomatic complexity 43 of function GoHeaderInput() is high (> 15) (gocyclo)
    • Line 11: warning: cyclomatic complexity 21 of function GoHeaderName() is high (> 15) (gocyclo)
    • Line 97: warning: cyclomatic complexity 19 of function GoHeaderOutput() is high (> 15) (gocyclo)

golint0%

Golint is a linter for Go source code.

An error occurred while running this test (exit status 3)


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign99%

IneffAssign detects ineffectual assignments in Go code.


misspell0%

Misspell Finds commonly misspelled English words

An error occurred while running this test (exit status 2)