--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/array.js --- # Input ```js a = [ , ,,,, , , a, ] ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1 +1 @@ -a = [, , , , , , , a]; +a = [, , , , , , , a]; \ No newline at end of file ``` # Output ```js a = [, , , , , , , a];```