ソースを参照

fix: Disabling short-children inlining when inline attributes is disabled

marc2332 1 年間 前
コミット
c10cefffb6
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/autofmt/src/lib.rs

+ 1 - 1
packages/autofmt/src/lib.rs

@@ -140,7 +140,7 @@ pub fn write_block_out(body: CallBody) -> Option<String> {
 }
 
 fn write_body(buf: &mut Writer, body: &CallBody) {
-    if buf.is_short_children(&body.roots).is_some() {
+    if buf.is_short_children(&body.roots).is_some() && !buf.out.indent.inline_attributes() {
         // write all the indents with spaces and commas between
         for idx in 0..body.roots.len() - 1 {
             let ident = &body.roots[idx];