--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/ignore-indentation.js --- # Input ```js function ugly ( {a=1, b = 2 } ) { function ugly ( {a=1, b = 2 } ) { function ugly ( {a=1, b = 2 } ) { `multiline template string with too much indentation` } } } ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,7 +1,7 @@ -function ugly({ a = 1, b = 2 }) { - function ugly({ a = 1, b = 2 }) { - function ugly({ a = 1, b = 2 }) { - `multiline template string +function ugly ( {a=1, b = 2 } ) { + function ugly ( {a=1, b = 2 } ) { + function ugly ( {a=1, b = 2 } ) { + `multiline template string with too much indentation`; } } ``` # Output ```js function ugly ( {a=1, b = 2 } ) { function ugly ( {a=1, b = 2 } ) { function ugly ( {a=1, b = 2 } ) { `multiline template string with too much indentation`; } } } ```