Preparing report...

Report for kubevault.dev/csi-driver

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


gocyclo94%

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.


golint31%

Golint is a linter for Go source code.

    • /kubevault.dev/csi-driver/pkg/driver/node.go
    • Line 36: warning: error var InstanceNotFound should have name of the form ErrFoo (golint)
    • Line 36: warning: exported var InstanceNotFound should have comment or be unexported (golint)
    • Line 318: warning: exported method Driver.NodeGetVolumeStats should have comment or be unexported (golint)
    • Line 345: warning: exported method Driver.NodeGetInfo should have comment or be unexported (golint)
    • Line 358: warning: exported method Driver.NodeExpandVolume should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/server/server.go
    • Line 32: warning: exported var Scheme should have comment or be unexported (golint)
    • Line 52: warning: exported type VaultDriverConfig should have comment or be unexported (golint)
    • Line 63: warning: exported method VaultDriver.Run should have comment or be unexported (golint)
    • Line 75: warning: exported type CompletedConfig should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/util/vault.go
    • Line 37: warning: exported const VaultRole should have comment (or a comment on this block) or be unexported (golint)
    • Line 40: warning: exported type PodInfo should have comment or be unexported (golint)
    • Line 53: warning: exported function NewVaultClient should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/cmds/server/start.go
    • Line 39: warning: exported type VaultDriverOptions should have comment or be unexported (golint)
    • Line 47: warning: exported function NewVaultDriverOptions should have comment or be unexported (golint)
    • Line 66: warning: exported method VaultDriverOptions.AddFlags should have comment or be unexported (golint)
    • Line 71: warning: exported method VaultDriverOptions.Validate should have comment or be unexported (golint)
    • Line 75: warning: exported method VaultDriverOptions.Complete should have comment or be unexported (golint)
    • Line 79: warning: exported method VaultDriverOptions.Config should have comment or be unexported (golint)
    • Line 112: warning: exported method VaultDriverOptions.Run should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/driver/controller.go
    • Line 31: warning: exported const KB should have comment (or a comment on this block) or be unexported (golint)
    • Line 38: warning: exported const PublishInfoVolumeName should have comment (or a comment on this block) or be unexported (golint)
    • Line 243: warning: exported method Driver.CreateSnapshot should have comment or be unexported (golint)
    • Line 256: warning: exported method Driver.DeleteSnapshot should have comment or be unexported (golint)
    • Line 266: warning: exported method Driver.ListSnapshots should have comment or be unexported (golint)
    • Line 273: warning: exported method Driver.ControllerExpandVolume should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/driver/config.go
    • Line 36: warning: exported type Config should have comment or be unexported (golint)
    • Line 45: warning: exported function NewConfig should have comment or be unexported (golint)
    • Line 59: warning: exported method Config.EnsureCRDs should have comment or be unexported (golint)
    • Line 66: warning: exported method Config.New should have comment or be unexported (golint)
    • /kubevault.dev/csi-driver/pkg/cmds/server/options.go
    • Line 32: warning: exported type ExtraOptions should have comment or be unexported (golint)
    • Line 40: warning: exported function NewExtraOptions should have comment or be unexported (golint)
    • Line 51: warning: exported method ExtraOptions.AddGoFlags should have comment or be unexported (golint)
    • Line 60: warning: exported method ExtraOptions.AddFlags should have comment or be unexported (golint)
    • Line 66: warning: exported method ExtraOptions.ApplyTo 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!