--- source: crates/biome_formatter_test/src/snapshot_builder.rs assertion_line: 212 info: js/range/boundary.js --- # Input ```js foo = 1.0000;bar = 1.0000;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ``` # Prettier differences ```diff --- Prettier +++ Biome @@ -1,5 +1,4 @@ -foo = 1.0000;bar = 1.0; -baz = 1.0; +foo = 1.0000;bar = 1.0;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ``` # Output ```js foo = 1.0000;bar = 1.0;baz=1.0000; // The range will be 13~26 // `foo` ends at 13, should not format // `bar` ends at 26, should format ```