Preparing report...

Report for github.com/sergi/go-diff

A    Great!    Found 3 issues across 11 files

Tweet

gofmt72%

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!


gocyclo81%

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.

    • go-diff/diffmatchpatch/diff.go
    • Line 263: warning: cyclomatic complexity 34 of function (*DiffMatchPatch).diffBisect() is high (> 15) (gocyclo)
    • Line 963: warning: cyclomatic complexity 25 of function (*DiffMatchPatch).DiffCleanupMerge() is high (> 15) (gocyclo)
    • Line 852: warning: cyclomatic complexity 23 of function (*DiffMatchPatch).DiffCleanupEfficiency() is high (> 15) (gocyclo)
    • Line 737: warning: cyclomatic complexity 20 of function diffCleanupSemanticScore() is high (> 15) (gocyclo)
    • Line 611: warning: cyclomatic complexity 18 of function (*DiffMatchPatch).DiffCleanupSemantic() is high (> 15) (gocyclo)
    • 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)

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!


ineffassign81%

IneffAssign detects ineffectual assignments in Go code.


misspell90%

Misspell Finds commonly misspelled English words