matype/stylefmt

formatting is not happening correctly in some case

sourav-kumar opened this issue · 0 comments

There are two cases where I found formatting not happening correctly,

  1. 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.

  1. actual
$variableName: #fff !default;

After formatting

$variableName: #fff!default;

space is getting removed after stylefmt formatting which is wrong.