Preparing report...

Report for github.com/xelabs/go-mysqlstack

A+    Excellent!    Found 28 issues across 117 files

Tweet

gofmt96%

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!


gocyclo83%

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-mysqlstack/sqlparser/ast.go
    • Line 919: warning: cyclomatic complexity 24 of function (TableOptions).Format() is high (> 15) (gocyclo)
    • Line 857: warning: cyclomatic complexity 20 of function (*DDL).Format() is high (> 15) (gocyclo)
    • Line 1047: warning: cyclomatic complexity 19 of function (*ColumnType).Format() is high (> 15) (gocyclo)

golint93%

Golint is a linter for Go source code.

    • go-mysqlstack/sqlparser/constants.go
    • Line 20: warning: comment on exported const DistinctStr should be of the form "DistinctStr ..." (golint)
    • Line 22: warning: exported const StraightJoinHint should have comment (or a comment on this block) or be unexported (golint)
    • Line 24: warning: comment on exported const ForUpdateStr should be of the form "ForUpdateStr ..." (golint)
    • Line 28: warning: comment on exported const SQLCacheStr should be of the form "SQLCacheStr ..." (golint)
    • Line 32: warning: comment on exported const UnionStr should be of the form "UnionStr ..." (golint)
    • Line 42: warning: comment on exported const SessionStr should be of the form "SessionStr ..." (golint)
    • Line 46: warning: comment on exported const CreateDBStr should be of the form "CreateDBStr ..." (golint)
    • Line 68: warning: comment on exported const IndexStr should be of the form "IndexStr ..." (golint)
    • Line 74: warning: comment on exported const ShowDatabasesStr should be of the form "ShowDatabasesStr ..." (golint)
    • Line 92: warning: comment on exported const JoinStr should be of the form "JoinStr ..." (golint)
    • Line 101: warning: comment on exported const UseStr should be of the form "UseStr ..." (golint)
    • Line 106: warning: comment on exported const WhereStr should be of the form "WhereStr ..." (golint)
    • Line 110: warning: comment on exported const EqualStr should be of the form "EqualStr ..." (golint)
    • Line 127: warning: comment on exported const BetweenStr should be of the form "BetweenStr ..." (golint)
    • Line 131: warning: comment on exported const IsNullStr should be of the form "IsNullStr ..." (golint)
    • Line 139: warning: comment on exported const BitAndStr should be of the form "BitAndStr ..." (golint)
    • Line 152: warning: comment on exported const UPlusStr should be of the form "UPlusStr ..." (golint)
    • Line 159: warning: comment on exported const CharacterSetStr should be of the form "CharacterSetStr ..." (golint)
    • Line 162: warning: comment on exported const BooleanModeStr should be of the form "BooleanModeStr ..." (golint)
    • Line 168: warning: comment on exported const AscScr should be of the form "AscScr ..." (golint)
    • Line 178: warning: comment on exported const ReadUncommitted should be of the form "ReadUncommitted ..." (golint)
    • Line 184: warning: comment on exported const TxReadOnly should be of the form "TxReadOnly ..." (golint)
    • go-mysqlstack/driver/rows.go
    • Line 25: warning: exported type RowMode should have comment or be unexported (golint)
    • Line 28: warning: exported const TextRowMode should have comment (or a comment on this block) or be unexported (golint)
    • go-mysqlstack/sqlparser/ast_funcs.go
    • Line 128: warning: exported const TableOptionNone should have comment (or a comment on this block) or be unexported (golint)
    • Line 156: warning: comment on exported method TableOptionListOpt.CheckIfTableOptDuplicate should be of the form "CheckIfTableOptDuplicate ..." (golint)
    • Line 317: warning: exported method TableOptionListOpt.GetTableOptValByType should have comment or be unexported (golint)
    • Line 342: warning: exported type TableOptionListOpt should have comment or be unexported (golint)
    • Line 433: warning: exported type ColumnOptionListOpt should have comment or be unexported (golint)
    • Line 437: warning: exported type ColumnOption should have comment or be unexported (golint)
    • Line 477: warning: exported type ColumnOpt should have comment or be unexported (golint)
    • Line 480: warning: exported const ColumnOptionNone should have comment (or a comment on this block) or be unexported (golint)
    • Line 482: warning: comment on exported const ColumnOptionNotNull should be of the form "ColumnOptionNotNull ..." (golint)
    • Line 485: warning: comment on exported const ColumnOptionAutoincrement should be of the form "ColumnOptionAutoincrement ..." (golint)
    • Line 488: warning: comment on exported const ColumnOptionDefault should be of the form "ColumnOptionDefault ..." (golint)
    • Line 491: warning: comment on exported const ColumnOptionComment should be of the form "ColumnOptionComment ..." (golint)
    • Line 494: warning: comment on exported const ColumnOptionOnUpdate should be of the form "ColumnOptionOnUpdate ..." (golint)
    • Line 497: warning: comment on exported const ColumnOptionKeyPrimaryOpt should be of the form "ColumnOptionKeyPrimaryOpt ..." (golint)
    • Line 500: warning: comment on exported const ColumnOptionKeyUniqueOpt should be of the form "ColumnOptionKeyUniqueOpt ..." (golint)
    • Line 503: warning: comment on exported const ColumnOptionCollate should be of the form "ColumnOptionCollate ..." (golint)
    • Line 506: warning: comment on exported const ColumnOptionFormat should be of the form "ColumnOptionFormat ..." (golint)
    • Line 509: warning: comment on exported const ColumnOptionStorage should be of the form "ColumnOptionStorage ..." (golint)
    • Line 513: warning: exported method ColumnOption.GetOptType should have comment or be unexported (golint)
    • Line 517: warning: exported method ColumnOptionListOpt.GetColumnOption should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign96%

IneffAssign detects ineffectual assignments in Go code.


misspell98%

Misspell Finds commonly misspelled English words