Preparing report...

Report for github.com/snowlyg/gotransformer

A+    Excellent!    Found 2 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.

    • gotransformer/xlxstransform.go
    • Line 57: warning: cyclomatic complexity 18 of function (*XlxsTransform).XlxsTransformer() is high (> 15) (gocyclo)
    • Line 108: warning: cyclomatic complexity 18 of function (*XlxsTransform).XlxsCellTransformer() is high (> 15) (gocyclo)

golint71%

Golint is a linter for Go source code.

    • gotransformer/gotransformer.go
    • Line 11: warning: exported type Transform should have comment or be unexported (golint)
    • Line 17: warning: exported type Tag should have comment or be unexported (golint)
    • Line 24: warning: exported function NewTransform should have comment or be unexported (golint)
    • Line 32: warning: exported method Transform.Transformer should have comment or be unexported (golint)
    • Line 202: warning: comment on exported method Transform.CallOutFunc should be of the form "CallOutFunc ..." (golint)
    • Line 246: warning: comment on exported function GetValue should be of the form "GetValue ..." (golint)
    • Line 251: warning: comment on exported function GetValueKind should be of the form "GetValueKind ..." (golint)
    • Line 256: warning: comment on exported function GetValueElem should be of the form "GetValueElem ..." (golint)
    • Line 261: warning: comment on exported function GetValueElemType should be of the form "GetValueElemType ..." (golint)
    • Line 266: warning: comment on exported function GetValueElemField should be of the form "GetValueElemField ..." (golint)
    • Line 271: warning: comment on exported function GetValueElemTypeField should be of the form "GetValueElemTypeField ..." (golint)
    • Line 276: warning: comment on exported function GetMapKeys should be of the form "GetMapKeys ..." (golint)
    • Line 281: warning: comment on exported function GetMapValue should be of the form "GetMapValue ..." (golint)
    • Line 315: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 338: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 346: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 352: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 358: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 397: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 423: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • gotransformer/xlxstransform.go
    • Line 12: warning: exported type XlxsTransform should have comment or be unexported (golint)
    • Line 21: warning: exported function NewXlxsTransform should have comment or be unexported (golint)
    • Line 57: warning: exported method XlxsTransform.XlxsTransformer should have comment or be unexported (golint)
    • Line 107: warning: comment on exported method XlxsTransform.XlxsCellTransformer should be of the form "XlxsCellTransformer ..." (golint)
    • Line 172: warning: comment on exported method XlxsTransform.GetExcelCell should be of the form "GetExcelCell ..." (golint)
    • Line 182: warning: error should be the last type when returning multiple items (golint)
    • Line 190: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign85%

IneffAssign detects ineffectual assignments in Go code.


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!