--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: json/array/nested.json --- # Input ```json { "array": [111111, [1, 2, "a"], 4444444444444444444444444444, 666666666666666, "abababababababababababababababababab"], "long": [11111, ["nestedddddddddddd", 22222222222222222222222222, true, 5555555555555555555555, "indenteddddddddddddddddddddddddddddd"], "Element"] } ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Indent width: 2 Line ending: LF Line width: 80 Trailing commas: None ----- ```json { "array": [ 111111, [1, 2, "a"], 4444444444444444444444444444, 666666666666666, "abababababababababababababababababab" ], "long": [ 11111, [ "nestedddddddddddd", 22222222222222222222222222, true, 5555555555555555555555, "indenteddddddddddddddddddddddddddddd" ], "Element" ] } ```