You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This field has custom conflicts that should still be detected
10
+
// +custom:marker1
11
+
// +custom:marker3
12
+
CustomConflictDetectedFieldstring`json:"customConflictDetectedField"`// want "field CustomConflictDetectedField has conflicting markers: custom_conflict: \\[custom:marker1\\] and \\[custom:marker3\\]. Custom markers conflict with each other"
13
+
14
+
// This field has both built-in and custom conflicts, but only custom conflicts should be reported
15
+
// +optional
16
+
// +required
17
+
// +custom:marker1
18
+
// +custom:marker3
19
+
MixedConflictsFieldstring`json:"mixedConflictsField"`// want "field MixedConflictsField has conflicting markers: custom_conflict: \\[custom:marker1\\] and \\[custom:marker3\\]. Custom markers conflict with each other"
// This field has custom conflicts that should still be detected
10
+
// +custom:marker1
11
+
// +custom:marker3
12
+
CustomConflictDetectedField string `json:"customConflictDetectedField"` // want "field CustomConflictDetectedField has conflicting markers: custom_conflict: \\[custom:marker1\\] and \\[custom:marker3\\]. Custom markers conflict with each other"
13
+
14
+
// This field has both built-in and custom conflicts, but only custom conflicts should be reported
15
+
// +optional
16
+
// +required
17
+
// +custom:marker1
18
+
// +custom:marker3
19
+
MixedConflictsField string `json:"mixedConflictsField"` // want "field MixedConflictsField has conflicting markers: custom_conflict: \\[custom:marker1\\] and \\[custom:marker3\\]. Custom markers conflict with each other"
0 commit comments