Preparing report...

Report for github.com/bkthomps/Ven

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


gocyclo88%

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.


golint64%

Golint is a linter for Go source code.

    • Ven/buffer/navigation.go
    • Line 5: warning: exported method File.Left should have comment or be unexported (golint)
    • Line 15: warning: exported method File.Right should have comment or be unexported (golint)
    • Line 29: warning: exported method File.Up should have comment or be unexported (golint)
    • Line 38: warning: exported method File.Down should have comment or be unexported (golint)
    • Line 63: warning: exported method File.StartOfLine should have comment or be unexported (golint)
    • Line 69: warning: exported method File.EndOfLine should have comment or be unexported (golint)
    • Line 82: warning: exported method File.JumpToTop should have comment or be unexported (golint)
    • Line 87: warning: exported method File.JumpToBottom should have comment or be unexported (golint)
    • Ven/screen/screen.go
    • Line 34: warning: exported type Screen should have comment or be unexported (golint)
    • Line 64: warning: exported method Screen.Init should have comment or be unexported (golint)
    • Ven/search/search.go
    • Line 10: warning: exported type MatchLine should have comment or be unexported (golint)
    • Line 15: warning: exported type MatchInstance should have comment or be unexported (golint)
    • Line 20: warning: exported function AllMatches should have comment or be unexported (golint)
    • Ven/buffer/file.go
    • Line 12: warning: exported const TabSize should have comment or be unexported (golint)
    • Line 14: warning: exported type File should have comment or be unexported (golint)
    • Line 28: warning: exported method File.Init should have comment or be unexported (golint)
    • Line 59: warning: exported method File.CanSafeQuit should have comment or be unexported (golint)
    • Line 63: warning: exported method File.Save should have comment or be unexported (golint)
    • Line 86: warning: exported function RuneWidthJump should have comment or be unexported (golint)
    • Line 97: warning: exported function RuneWidthBackJump should have comment or be unexported (golint)
    • Ven/buffer/line.go
    • Line 3: warning: exported type Line should have comment or be unexported (golint)
    • Line 9: warning: exported method Line.Init should have comment or be unexported (golint)
    • Line 15: warning: exported method Line.AddAt should have comment or be unexported (golint)
    • Line 21: warning: exported method Line.RemoveAt should have comment or be unexported (golint)
    • Ven/buffer/mutation.go
    • Line 3: warning: exported method File.Add should have comment or be unexported (golint)
    • Line 37: warning: exported method File.Remove should have comment or be unexported (golint)
    • Line 53: warning: exported method File.RemoveBefore should have comment or be unexported (golint)
    • Line 65: warning: exported method File.Backspace should have comment or be unexported (golint)
    • Line 92: warning: exported method File.RemoveLine should have comment or be unexported (golint)
    • Line 125: warning: exported method File.RemoveRestOfLine should have comment or be unexported (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!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!