csscomb / sublime-csscomb

Sublime plugin for CSScomb—CSS coding style formatter
398 stars 61 forks source link

space-before-selector-delimiter doesn't seem to work in .scss #68

Open lokywin opened 8 years ago

lokywin commented 8 years ago

I use SCSS in my project, and with the following in my .csscomb.json space-after-selector-delimiter: "\n"; After running csscomb all the selectors previously separated by , are now on the same line. Do you have an insight? Thank you very much. Before

input[type='text'], 
input[type='button'], 
input[type='checkbox'], 
input[type='radio'], 
select { 

---
}

After

input[type='text'], input[type='button'], input[type='checkbox'], input[type='radio'], select { 

---
}

Before running com, the rules seem more readable, imo. especially true when there are many rules grouped together.

pixelyunicorn commented 7 years ago

I am running into the same issues as well. Any solution to this?