--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/different-levels.js --- # Input ```js call(1,2,3) call(1,2,3) function f() { call(1,2,3) } ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,4 +1,4 @@ -call(1, 2, 3); +call(1,2,3) call(1, 2, 3); function f() { call(1, 2, 3); ``` # Output ```js call(1,2,3) call(1, 2, 3); function f() { call(1, 2, 3); } ```