csscomb / csscomb.js

CSS coding style formatter
http://csscomb.com/
MIT License
3.29k stars 458 forks source link

Possibility to exlude code formatting/disable tab indent #587

Open jirsbek opened 6 years ago

jirsbek commented 6 years ago

Hello, I wonder if is possible to completely disable code formatting.

E. g. I've got:

.class1 {
     display: block;
     font-size: 1rem;
}

    .class2 {
        font-size: 1rem;
        display: block;
    }

All I want is just sort the declarations. Unfortunately also code formatting happens.

I've got "block-indent": "\t", but If is this declaration removed or set tab-size: true; code is still formatted the way I don't like. So I would like to disable formatting completely and just keep the declaration sorting.

robsonsobral commented 5 years ago

It's impossible to disable block-indent. I've trying a lot.