--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: json/comments/multiline.json --- # Input ```json /** * Leading **/ { /** * Leading **/ "number": 1123123213123123123123122311231232131231231231231223,/** * Trailing **/ "string": "some-long-long-long-long-long-long-long-string", "array": [12312321, {"another-number": 12321321, "string": "some-string"}], "object": {"array": [123214123, "some-long-long-string", [12312312, "some-long-long-string"]]}, "null": null } /** * Trailing **/ ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Indent width: 2 Line ending: LF Line width: 80 Trailing commas: None ----- ```json /** * Leading **/ { /** * Leading **/ "number": 1123123213123123123123122311231232131231231231231223 /** * Trailing **/, "string": "some-long-long-long-long-long-long-long-string", "array": [12312321, { "another-number": 12321321, "string": "some-string" }], "object": { "array": [ 123214123, "some-long-long-string", [12312312, "some-long-long-string"] ] }, "null": null } /** * Trailing **/ ```