formatting is not happening correctly in some case
sourav-kumar opened this issue · 0 comments
sourav-kumar commented
There are two cases where I found formatting not happening correctly,
- actual:
.class-name { padding: 0; }
after formatting:
.class-name { padding: 0;
}
There should not be any change as per rule written in styleling-config-standard
. Means closing brace should not be on new line.
- actual
$variableName: #fff !default;
After formatting
$variableName: #fff!default;
space is getting removed after stylefmt formatting which is wrong.