package
0.5.0
Repository: https://github.com/gibizer/operator-lint.git
Documentation: pkg.go.dev

# README

C002

C002 detects incompatible Required kubebuilder marker and omitemty golang tag.

// +kubebuilder:Required
Foo string `json:"foo,omitempty"`

The omitempty tag makes the field Foo optional regardless of the Required marker so this makes the code confusing.