Preparing report...

Report for github.com/moov-io/ach-web-viewer

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


gocyclo100%

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.

No problems detected. Good job!


golint41%

Golint is a linter for Go source code.

    • ach-web-viewer/internal/gpgx/keys.go
    • Line 50: warning: exported function Encrypt should have comment or be unexported (golint)
    • Line 95: warning: exported function Sign should have comment or be unexported (golint)
    • Line 108: warning: exported function Decrypt should have comment or be unexported (golint)
    • ach-web-viewer/pkg/filelist/list.go
    • Line 10: warning: exported type Files should have comment or be unexported (golint)
    • Line 16: warning: exported type File should have comment or be unexported (golint)
    • Line 22: warning: exported type Lister should have comment or be unexported (golint)
    • Line 29: warning: exported type Listers should have comment or be unexported (golint)
    • Line 31: warning: exported method Listers.GetFiles should have comment or be unexported (golint)
    • Line 43: warning: exported function NewListers should have comment or be unexported (golint)
    • Line 66: warning: exported method Listers.GetFile should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign58%

IneffAssign detects ineffectual assignments in Go code.

    • ach-web-viewer/pkg/filelist/bucket.go
    • Line 12: warning: no required module provides package github.com/moov-io/ach-web-viewer/pkg/service; to add it: (ineffassign)
    • Line 12: warning: could not import github.com/moov-io/ach-web-viewer/pkg/service (invalid package name: "") (ineffassign)
    • ach-web-viewer/pkg/display/web/web.go
    • Line 8: warning: no required module provides package github.com/moov-io/ach-web-viewer/pkg/service; to add it: (ineffassign)
    • Line 8: warning: could not import github.com/moov-io/ach-web-viewer/pkg/service (invalid package name: "") (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!