Codemod format for trailing commas incoming change [5/n] (#1847)

Summary:
X-link: https://github.com/facebook/react-native/pull/53260

Pull Request resolved: https://github.com/facebook/yoga/pull/1847

Adding trailing commas.

Reviewed By: cortinico

Differential Revision: D80174965

fbshipit-source-id: 5438fa9ebce13525b1286dd30704138ef99703cb
This commit is contained in:
Nivaldo Bondança
2025-08-14 07:24:42 -07:00
committed by Facebook GitHub Bot
parent 93bea17635
commit d1246f6f0d
2 changed files with 3 additions and 2 deletions

View File

@@ -14,6 +14,6 @@ public fun interface YogaMeasureFunction {
width: Float,
widthMode: YogaMeasureMode,
height: Float,
heightMode: YogaMeasureMode
heightMode: YogaMeasureMode,
): Long
}

View File

@@ -13,6 +13,7 @@ package com.facebook.yoga.annotations
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.CONSTRUCTOR)
AnnotationTarget.CONSTRUCTOR,
)
@Retention(AnnotationRetention.BINARY)
public annotation class DoNotStrip