sublime-csscomb
sublime-csscomb copied to clipboard
Sublime plugin for CSScomb—CSS coding style formatter
It would be great to be able to specify a config file location. We use a standard config across all of our projects that we use an npm package to...
Using the latest version of SublimeText3 and just installed CSSComb through Package Installer. My .sass file: ``` section position: absolute width: 100% height: 100% header position: absolute left: 30vw width:...
clone from csscomb.js but change to es5 , add for https://github.com/csscomb/csscomb.js/blob/dev/doc/options.md#lines-between-rulesets
I have an issue that came from the 1.0 version, i can't “comb” any files, it always throw me an error. 1. I have tried multiple packages for the syntax...
``` { "node-path" : "D:/Program Files/nodejs/node.exe", } ``` i have write this in the user config file but this plugin doesn't work at all how could i find out what...
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...
Deleted deprecated properties from 2011 flexbox spec and added the 2012 properties. https://github.com/thejameskyle/flexbox-cheat-sheet/blob/master/README.md
bug

``` css .paper { @extend .row; @extend .small-12; position: relative; //... } ``` will cause: ``` core.js:412 throw e; ^ Please check the validity of the block starting from line...
# CSScomb messed up my scss file! help! _This issue description is re-edited._ Yesterday, I met up this problem: Original scss file demo: ``` @mixin color { $color: white; color:...