Preparing report...

Report for github.com/wayf-dk/goxml

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


gocyclo71%

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.

    • goxml/crypt.go
    • Line 185: warning: cyclomatic complexity 30 of function (*Xp).Decrypt() is high (> 15) (gocyclo)

golint57%

Golint is a linter for Go source code.

    • goxml/crypt.go
    • Line 30: warning: comment on exported var Algos should be of the form "Algos ..." (golint)
    • Line 478: warning: exported method Xp.DomSha1SumToBase64 should have comment or be unexported (golint)
    • goxml/xp.go
    • Line 122: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 157: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 165: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 183: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 196: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 208: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 215: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 221: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 229: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 240: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 250: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 260: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 270: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 280: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 291: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 311: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 321: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 395: warning: exported method Xp.QueryDashPOptional should have comment or be unexported (golint)
    • Line 395: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 403: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)
    • Line 424: warning: receiver name xp should be consistent with previous receiver name src for Xp (golint)

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!


misspell85%

Misspell Finds commonly misspelled English words