You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improved CSS parser recovery for invalid `unicode-range` values that mix wildcard ranges with range intervals. For example, Biome now reports clearer diagnostics for invalid syntax like:
6
+
7
+
```css
8
+
unicode-range: U+11???-2??;
9
+
unicode-range: U+11???-;
10
+
```
11
+
12
+
with diagnostics such as:
13
+
14
+
```text
15
+
× Wildcard ranges cannot be combined with a range interval.
0 commit comments