Preparing report...

Report for github.com/attron/utdfgo

A+    Excellent!    Found 2 issues across 3 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!


golint33%

Golint is a linter for Go source code.

    • utdfgo/utdf.go
    • Line 47: warning: comment on exported method UTDF.GetYear should be of the form "GetYear ..." (golint)
    • Line 59: warning: comment on exported method UTDF.GetSeconds should be of the form "GetSeconds ..." (golint)
    • Line 66: warning: comment on exported method UTDF.GetMicroseconds should be of the form "GetMicroseconds ..." (golint)
    • Line 89: warning: comment on exported method UTDF.GetAzimuth should be of the form "GetAzimuth ..." (golint)
    • Line 97: warning: comment on exported method UTDF.GetElevation should be of the form "GetElevation ..." (golint)
    • Line 141: warning: comment on exported method UTDF.GetAGC should be of the form "GetAGC ..." (golint)
    • Line 148: warning: comment on exported method UTDF.GetTransmitFreq should be of the form "GetTransmitFreq ..." (golint)
    • Line 156: warning: comment on exported method UTDF.GetAntennaType should be of the form "GetAntennaType ..." (golint)
    • Line 163: warning: comment on exported method UTDF.GetPADID should be of the form "GetPADID ..." (golint)
    • Line 170: warning: comment on exported method UTDF.GetRecieveAntennaType should be of the form "GetRecieveAntennaType ..." (golint)
    • Line 177: warning: comment on exported method UTDF.GetRecievePADID should be of the form "GetRecievePADID ..." (golint)
    • Line 184: warning: comment on exported method UTDF.GetSystemMode should be of the form "GetSystemMode ..." (golint)
    • Line 191: warning: comment on exported method UTDF.GetDataValidation should be of the form "GetDataValidation ..." (golint)
    • Line 198: warning: comment on exported method UTDF.GetFrequencyBand should be of the form "GetFrequencyBand ..." (golint)
    • Line 205: warning: comment on exported method UTDF.GetTrackingInfo should be of the form "GetTrackingInfo ..." (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!