badsyntax / SassBeautify

[not maintained] A Sublime Text plugin that beautifies Sass files.
https://github.com/badsyntax/SassBeautify
MIT License
143 stars 13 forks source link

Single declarations on one line #61

Closed saltcod closed 9 years ago

saltcod commented 9 years ago

An increasingly common way to write sass is to have single declarations on one line (http://codeguide.co/)

So, Beautify would do this

.row { display: block; }

Instead of this:

.row { display: block; }

Is this a possible user setting at the moment?

Thanks! LOVE this.

badsyntax commented 9 years ago

Hey. Sorry, the plugin does not support this type of formatting (this plugin uses sass-convert which does all the formatting).