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
I noticed that if there is a semicolon missing, sass-convert throws an error and SassBeautify doesn't complete. Rather than just displaying the error, it would be nice to have SassBeautify add semicolons automatically. Sure, a linter will show you the missing semicolons, but it is so much easier to just have SassBeautify add them for me.
For example, in the following code, lines 2, 4, and 12 are each missing a semicolon and will each cause sass-convert to fail.
// @import '_common';
@import"_colors"
$variable: 35
//TODO: eat pizza
// and other things
.ClassA,
.ClassB
{
height:14px
font-size: 2em;
margin:-3px0!important;
}
The text was updated successfully, but these errors were encountered:
I noticed that if there is a semicolon missing, sass-convert throws an error and SassBeautify doesn't complete. Rather than just displaying the error, it would be nice to have SassBeautify add semicolons automatically. Sure, a linter will show you the missing semicolons, but it is so much easier to just have SassBeautify add them for me.
For example, in the following code, lines 2, 4, and 12 are each missing a semicolon and will each cause sass-convert to fail.
The text was updated successfully, but these errors were encountered: