This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
commit 0277b3ee56b5955b6ac13fe12770e1c083c14a5f Author: Josh Tynjala <[email protected]> AuthorDate: Thu Jan 9 12:19:54 2025 -0800 formatter: add missing Config annotation to some config options Followup to 4619990e94e5bc1ce30e183ea24066ee37fd7215, which removed it, but was supposed to remove only the advanced=true part --- .../main/java/org/apache/royale/formatter/config/Configuration.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/formatter/src/main/java/org/apache/royale/formatter/config/Configuration.java b/formatter/src/main/java/org/apache/royale/formatter/config/Configuration.java index e8f24ede4..ccdcfe0e2 100644 --- a/formatter/src/main/java/org/apache/royale/formatter/config/Configuration.java +++ b/formatter/src/main/java/org/apache/royale/formatter/config/Configuration.java @@ -601,6 +601,7 @@ public class Configuration { return mxmlAlignAttributes; } + @Config @Mapping("mxml-align-attributes") public void setMxmlAlignAttributes(ConfigurationValue cv, boolean b) { @@ -618,6 +619,7 @@ public class Configuration { return mxmlInsertNewLineBetweenAttributes; } + @Config @Mapping("mxml-insert-new-line-attributes") public void setMxmlInsertNewLineBetweenAttributes(ConfigurationValue cv, boolean b) { @@ -635,6 +637,7 @@ public class Configuration { return mxmlIndentCData; } + @Config @Mapping("mxml-indent-cdata") public void setMxmlIndentCData(ConfigurationValue cv, boolean b) {
