Preparing report...

Report for github.com/mxpv/nvml-go

A+    Excellent!    Found 5 issues across 13 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!


golint69%

Golint is a linter for Go source code.

    • nvml-go/bindings.go
    • Line 12: warning: exported var ErrNotImplemented should have comment or be unexported (golint)
    • Line 14: warning: exported type API should have comment or be unexported (golint)
    • Line 148: warning: exported method API.ReleaseDLL should have comment or be unexported (golint)
    • nvml-go/device_queries.go
    • Line 116: warning: exported method API.DeviceGetBridgeChipInfo should have comment or be unexported (golint)
    • Line 304: warning: exported method API.DeviceGetEncoderSessions should have comment or be unexported (golint)
    • Line 385: warning: comment on exported method API.DeviceGetHandleByPCIBusID should be of the form "DeviceGetHandleByPCIBusID ..." (golint)
    • Line 434: warning: comment on exported method API.DeviceGetInfoROMImageVersion should be of the form "DeviceGetInfoROMImageVersion ..." (golint)
    • Line 537: warning: exported method API.DeviceGetP2PStatus should have comment or be unexported (golint)
    • Line 541: warning: exported method API.DeviceGetPCIInfo should have comment or be unexported (golint)
    • Line 678: warning: exported method API.DeviceGetSamples should have comment or be unexported (golint)
    • Line 762: warning: exported method API.DeviceGetTopologyNearestGpus should have comment or be unexported (golint)
    • nvml-go/structs.go
    • Line 31: warning: comment on exported type TemperatureSensor should be of the form "TemperatureSensor ..." (with optional leading article) (golint)
    • Line 39: warning: comment on exported type TemperatureThreshold should be of the form "TemperatureThreshold ..." (with optional leading article) (golint)
    • Line 54: warning: comment on exported type ClockType should be of the form "ClockType ..." (with optional leading article) (golint)
    • Line 74: warning: exported method ProcessInfo.MemoryInfoAvailable should have comment or be unexported (golint)
    • Line 85: warning: comment on exported type BrandType should be of the form "BrandType ..." (with optional leading article) (golint)
    • Line 115: warning: comment on exported type ClockID should be of the form "ClockID ..." (with optional leading article) (golint)
    • Line 126: warning: exported type ClocksThrottleReason should have comment or be unexported (golint)
    • Line 201: warning: comment on exported type DriverModel should be of the form "DriverModel ..." (with optional leading article) (golint)
    • Line 212: warning: comment on exported type ComputeMode should be of the form "ComputeMode ..." (with optional leading article) (golint)
    • Line 227: warning: comment on exported type RestrictedAPI should be of the form "RestrictedAPI ..." (with optional leading article) (golint)
    • Line 238: warning: comment on exported type InfoROMObject should be of the form "InfoROMObject ..." (with optional leading article) (golint)
    • Line 251: warning: comment on exported type EncoderType should be of the form "EncoderType ..." (with optional leading article) (golint)
    • Line 260: warning: comment on exported type MemoryErrorType should be of the form "MemoryErrorType ..." (with optional leading article) (golint)
    • Line 271: warning: comment on exported type ECCCounterType should be of the form "ECCCounterType ..." (with optional leading article) (golint)
    • Line 287: warning: comment on exported type MemoryLocation should be of the form "MemoryLocation ..." (with optional leading article) (golint)
    • Line 308: warning: comment on exported type PCIeUtilCounter should be of the form "PCIeUtilCounter ..." (with optional leading article) (golint)
    • Line 341: warning: comment on exported type PageRetirementCause should be of the form "PageRetirementCause ..." (with optional leading article) (golint)
    • Line 352: warning: comment on exported type GPUTopologyLevel should be of the form "GPUTopologyLevel ..." (with optional leading article) (golint)
    • Line 366: warning: comment on exported type ECCErrorCounts should be of the form "ECCErrorCounts ..." (with optional leading article) (golint)
    • Line 375: warning: comment on exported type PerfPolicyType should be of the form "PerfPolicyType ..." (with optional leading article) (golint)

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!


ineffassign92%

IneffAssign detects ineffectual assignments in Go code.


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!