sublime-csscomb icon indicating copy to clipboard operation
sublime-csscomb copied to clipboard

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

Open lokywin opened this issue 9 years ago • 1 comments

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.

lokywin avatar Aug 31 '15 21:08 lokywin

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

pixelyunicorn avatar Aug 24 '16 02:08 pixelyunicorn