TheRealSyler / sass-formatter

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

Various incorrect spaces are not fixed #30

Closed mesqueeb closed 3 years ago

mesqueeb commented 4 years ago

Describe the bug Various double spaces are not fixed

To Reproduce

@import  'something'
.animate-blink
  animation : blink  1.3s infinite
@keyframes  blink
  from
    opacity : 1. 0

list of spaces I'd expect to be fixed:

Expected behavior to be fixed to:

@import 'something'
.animate-blink
  animation: blink 1.3s infinite
@keyframes blink
  from
    opacity: 1.0

Desktop (please complete the following information): macOS, latest VSCode with this extension

TheRealSyler commented 4 years ago

i'm aware, i will fix it when i have time and want to do it.

mesqueeb commented 3 years ago

@TheRealSyler this is such an awesome fix! Happy to see you're still maintaining! : )

I hope Vetur adopts your latest version soon as well! ; )

mesqueeb commented 3 years ago

@TheRealSyler two remaining issues

Shall I open a new issue for this?

TheRealSyler commented 3 years ago

@mesqueeb no, i will reopen this issue.

TheRealSyler commented 3 years ago

fixed but i want to fix #32 and #38 before i update the extension and the formatter.

mesqueeb commented 3 years ago

thanks, this was fixed!