Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce35ab6

Browse files
committed
fix(format): css comma separated values
1 parent 141bb5e commit ce35ab6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.changeset/mean-ways-make.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
"@biomejs/biome": patch
3+
---
4+
5+
Fixed an issue where Biome formatter didn't format consistently CSS value separated by commas.
6+
7+
```diff
8+
.font-heading {
9+
- font-feature-settings: var(--heading-salt), var(--heading-ss06),
10+
- var(--heading-ss11), var(--heading-cv09), var(--heading-liga),
11+
- var(--heading-calt);
12+
13+
+ font-feature-settings:
14+
+ var(--heading-salt), var(--heading-ss06), var(--heading-ss11),
15+
+ var(--heading-cv09), var(--heading-liga), var(--heading-calt);
16+
}
17+
18+
```

0 commit comments

Comments
 (0)