--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/directive.js --- # Input ```js 'aaa'; 'bbb'; ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,2 +1,2 @@ "aaa"; -"bbb"; +'bbb'; ``` # Output ```js "aaa"; 'bbb'; ```