Integrate clang-format into JS lint steps

This commit is contained in:
Nick Gerleman
2022-12-24 23:05:04 -08:00
parent 466333ed14
commit a14e422961
7 changed files with 121 additions and 62 deletions

View File

@@ -32,11 +32,11 @@ EMSCRIPTEN_BINDINGS(YOGA_LAYOUT) {
"setExperimentalFeatureEnabled",
&Config::setExperimentalFeatureEnabled)
.function("setPointScaleFactor", &Config::setPointScaleFactor)
.function("setUseLegacyStretchBehaviour", &Config::setUseLegacyStretchBehaviour)
.function(
"setUseLegacyStretchBehaviour", &Config::setUseLegacyStretchBehaviour)
.function("setUseWebDefaults", &Config::setUseWebDefaults)
.function(
"isExperimentalFeatureEnabled",
&Config::isExperimentalFeatureEnabled)
"isExperimentalFeatureEnabled", &Config::isExperimentalFeatureEnabled)
.function("useLegacyStretchBehaviour", &Config::useLegacyStretchBehaviour)
.function("useWebDefaults", &Config::useWebDefaults);