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

# README

C001

C001 detects incompatible Required and Optional kubebuilder markers.

// +kubebuilder:Optional
// +kubebuilder:Required
Foo string `json:"foo"`

It is undefined that the field Foo will be required or optional.