biome_css_formatter 0.5.7

Biome's CSS formatter
Documentation
---
source: crates/biome_formatter_test/src/snapshot_builder.rs
info: css/composes/composes.css
---

# Input

```css
.reference {
  composes: selector from "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
}

```


# Prettier differences

```diff
--- Prettier
+++ Biome
@@ -1,3 +1,4 @@
 .reference {
-  composes: selector from "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
+  composes: selector from
+    "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
 }
```

# Output

```css
.reference {
  composes: selector from
    "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
}
```

# Lines exceeding max width of 80 characters
```
    3:     "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
```