--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: json/array/single_line.json --- # Input ```json { "array": ["aaaaaaa", "bbbbbb", false], "indented": [ 1111, 2222, true ] } ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Indent width: 2 Line ending: LF Line width: 80 Trailing commas: None ----- ```json { "array": ["aaaaaaa", "bbbbbb", false], "indented": [1111, 2222, true] } ```