--- source: crates/biome_formatter_test/src/snapshot_builder.rs assertion_line: 212 info: js/range/multiple-statements2.js --- # Input ```js call( 1, 2,3 ); call( 1, 2,3 ); call( 1, 2,3 ); call( 1, 2,3 ); ``` # Prettier differences ```diff --- Prettier +++ Biome @@ -6,4 +6,6 @@ call(1, 2, 3); -call(1, 2, 3); +call( + 1, 2,3 +); ``` # Output ```js call( 1, 2,3 ); call(1, 2, 3); call(1, 2, 3); call( 1, 2,3 ); ```