The following code ``` type QuotaList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Quota `json:"items"` } ``` will change to ``` type QuotaList struct { metav1.TypeMeta ` json:",inline"` metav1.ListMeta ` json:"metadata,omitempty"` Items []Quota `json:"items"` } ``` easier to see in this screenshot: <img width="795" height="261" alt="Image" src="https://github.com/user-attachments/assets/20561828-4af6-4ac0-8a44-5190efe8c983" /> is this correct behavior?
The following code
will change to
easier to see in this screenshot:
is this correct behavior?