--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: json/array/layout.json --- # Input ```json { "fillLayout": ["aaaa", "bbb", "cc", true, false, 111, 44, null], "oneLineLayout": ["aaa", "bbb", {}], "oneLineWithArray": [1, false, [], null] } ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 ----- ```json { "fillLayout": [ "aaaa", "bbb", "cc", true, false, 111, 44, null ], "oneLineLayout": [ "aaa", "bbb", {} ], "oneLineWithArray": [ 1, false, [], null ] } ```