Preparing report...

Report for github.com/smarty/assertions

(v1.14.0)

A+    Excellent!    Found 8 issues across 51 files

Tweet

gofmt94%

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!


gocyclo90%

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.

    • internal/go-diff/diffmatchpatch/patch.go
    • Line 375: warning: cyclomatic complexity 19 of function (*DiffMatchPatch).PatchSplitMax() is high (> 15) (gocyclo)
    • Line 232: warning: cyclomatic complexity 17 of function (*DiffMatchPatch).PatchApply() is high (> 15) (gocyclo)
    • Line 141: warning: cyclomatic complexity 16 of function (*DiffMatchPatch).patchMake2() is high (> 15) (gocyclo)
    • internal/go-diff/diffmatchpatch/diff.go
    • Line 261: warning: cyclomatic complexity 34 of function (*DiffMatchPatch).diffBisect() is high (> 15) (gocyclo)
    • Line 999: warning: cyclomatic complexity 25 of function (*DiffMatchPatch).DiffCleanupMerge() is high (> 15) (gocyclo)
    • Line 888: warning: cyclomatic complexity 23 of function (*DiffMatchPatch).DiffCleanupEfficiency() is high (> 15) (gocyclo)
    • Line 773: warning: cyclomatic complexity 20 of function diffCleanupSemanticScore() is high (> 15) (gocyclo)
    • Line 647: warning: cyclomatic complexity 18 of function (*DiffMatchPatch).DiffCleanupSemantic() is high (> 15) (gocyclo)

ineffassign98%

IneffAssign detects ineffectual assignments in Go code.


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell96%

Misspell Finds commonly misspelled English words

    • messages.go
    • Line 6: warning: "nto" is a misspelling of "not" (misspell)
    • Line 14: warning: "nto" is a misspelling of "not" (misspell)
    • Line 61: warning: "nto" is a misspelling of "not" (misspell)
    • Line 64: warning: "nto" is a misspelling of "not" (misspell)
    • Line 88: warning: "nto" is a misspelling of "not" (misspell)