--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/object-expression2.js --- # Input ```js const y = [ { a: 1, }, { a: 1, b:2 }, ] ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,3 +1,4 @@ + const y = [ { a: 1, ``` # Output ```js const y = [ { a: 1, }, { a: 1, b: 2, }, ]; ```