Preparing report...

Report for github.com/noelyahan/mergi

B    Not bad!    Found 25 issues across 33 files

Tweet

gofmt30%

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!


gocyclo93%

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.


golint93%

Golint is a linter for Go source code.

    • mergi/ease.go
    • Line 16: warning: exported function Ease should have comment or be unexported (golint)
    • Line 25: warning: exported function InBack should have comment or be unexported (golint)
    • Line 30: warning: exported function InBounce should have comment or be unexported (golint)
    • Line 34: warning: exported function InCirc should have comment or be unexported (golint)
    • Line 41: warning: exported function InCubic should have comment or be unexported (golint)
    • Line 45: warning: exported function InElastic should have comment or be unexported (golint)
    • Line 68: warning: exported function InExpo should have comment or be unexported (golint)
    • Line 75: warning: exported function InOutBack should have comment or be unexported (golint)
    • Line 86: warning: exported function InOutBounce should have comment or be unexported (golint)
    • Line 93: warning: exported function InOutCirc should have comment or be unexported (golint)
    • Line 102: warning: exported function InOutCubic should have comment or be unexported (golint)
    • Line 111: warning: exported function InOutElastic should have comment or be unexported (golint)
    • Line 139: warning: exported function InOutExpo should have comment or be unexported (golint)
    • Line 154: warning: exported function InOutQuad should have comment or be unexported (golint)
    • Line 163: warning: exported function InOutQuart should have comment or be unexported (golint)
    • Line 172: warning: exported function InOutQuint should have comment or be unexported (golint)
    • Line 181: warning: exported function InOutSine should have comment or be unexported (golint)
    • Line 185: warning: exported function InQuad should have comment or be unexported (golint)
    • Line 189: warning: exported function InQuart should have comment or be unexported (golint)
    • Line 193: warning: exported function InQuint should have comment or be unexported (golint)
    • Line 197: warning: exported function InSine should have comment or be unexported (golint)
    • Line 201: warning: exported function OutBack should have comment or be unexported (golint)
    • Line 207: warning: exported function OutBounce should have comment or be unexported (golint)
    • Line 221: warning: exported function OutCirc should have comment or be unexported (golint)
    • Line 226: warning: exported function OutCubic should have comment or be unexported (golint)
    • Line 231: warning: exported function OutElastic should have comment or be unexported (golint)
    • Line 253: warning: exported function OutExpo should have comment or be unexported (golint)
    • Line 260: warning: exported function OutQuad should have comment or be unexported (golint)
    • Line 264: warning: exported function OutQuart should have comment or be unexported (golint)
    • Line 269: warning: exported function OutQuint should have comment or be unexported (golint)
    • Line 274: warning: exported function OutSine should have comment or be unexported (golint)
    • Line 278: warning: exported function Linear should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign93%

IneffAssign detects ineffectual assignments in Go code.

    • mergi/ease.go
    • Line 46: warning: ineffectual assignment to s (ineffassign)
    • Line 112: warning: ineffectual assignment to s (ineffassign)
    • Line 232: warning: ineffectual assignment to s (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!