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
When I beautify a Sass file and there is a call to a function the code gets messed up really bad and obviously Sass has errors when compiling. For example there is this function:
@function headings($from:1, $to:6) {
...
}
And then this would be the call for said function:
#{headings(1,6)} {
margin: 0;
}
What the plugin does is it turns it into this:
# {
headings(1, 6)
}
{
margin: 0;
}
Needless to say this makes the plugin completely unusable if you are using functions in your Sass code, which is quite unfortunate as it seems to be pretty handy.
The text was updated successfully, but these errors were encountered:
When I beautify a Sass file and there is a call to a function the code gets messed up really bad and obviously Sass has errors when compiling. For example there is this function:
And then this would be the call for said function:
What the plugin does is it turns it into this:
Needless to say this makes the plugin completely unusable if you are using functions in your Sass code, which is quite unfortunate as it seems to be pretty handy.
The text was updated successfully, but these errors were encountered: