TheRealSyler / sass-formatter

Sass(indented syntax) formatter written in typescript
https://sass-formatter.syler.de
MIT License
10 stars 2 forks source link

incorrect space not fixed for variable names #42

Closed mesqueeb closed 3 years ago

mesqueeb commented 3 years ago

expect both of these:

$c-primary :#000000
// and
$c-primary : #000000

to be fixed to:

$c-primary: #000000

but they don't get auto fixed

mesqueeb commented 3 years ago

@TheRealSyler I fixed the issue!! was a combination of two things that caused the bug