wix / stylable

Stylable - CSS for components
https://stylable.io
MIT License
1.26k stars 62 forks source link

feat(formatter): group similar name at-rules #2964

Closed idoros closed 1 week ago

idoros commented 2 weeks ago

This PR changes the formatter behavior in order to group same name at-rules while maintaining spacing for other at-rule types.

Before this PR, the following code would remain unchanged:

@namespace "abc"
@st-import "./a.st.css"
@st-import "./b.st.css"
@property --a;
@property --b;

After this PR, the formatted code will be:

@namespace "abc"

@st-import "./a.st.css"
@st-import "./b.st.css"

@property --a;
@property --b;