Skip to content

Commit 8eb20ab

Browse files
committed
Fix linting warnings
1 parent 0ad96a3 commit 8eb20ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/KubeOps.Transpiler/Crds.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ private static V1JSONSchemaProps Map(this MetadataLoadContext context, Type type
313313
return new V1JSONSchemaProps
314314
{
315315
Type = Object,
316-
AdditionalProperties = additionalProperties
316+
AdditionalProperties = additionalProperties,
317317
};
318318
}
319319

@@ -363,7 +363,7 @@ private static V1JSONSchemaProps MapObjectType(this MetadataLoadContext context,
363363
Type = Object,
364364
Properties = null,
365365
XKubernetesPreserveUnknownFields = true,
366-
XKubernetesEmbeddedResource = true
366+
XKubernetesEmbeddedResource = true,
367367
};
368368
}
369369

@@ -413,7 +413,7 @@ private static V1JSONSchemaProps MapEnumerationType(
413413
return new V1JSONSchemaProps
414414
{
415415
Type = Object,
416-
AdditionalProperties = additionalProperties
416+
AdditionalProperties = additionalProperties,
417417
};
418418
}
419419

0 commit comments

Comments
 (0)