csscomb.js icon indicating copy to clipboard operation
csscomb.js copied to clipboard

CSS coding style formatter

Results 112 csscomb.js issues
Sort by recently updated
recently updated
newest added
trafficstars

Using Sublime Text plugin, but I assume it's a lib parsing issue. ``` css .foo { content: "\\"; } ``` Is comb'ed to: ``` css .foo { content: '\'; }...

type: bug
category: gpe

**Input** ```less .Thing { &-left { color: red; } &-left&-otherLeft { color: blue; } } ``` **Output** ``` Parsing error: myfile.less Please check validity of the block starting from line...

type: bug
category: gpe

Hello, ## The problem I found no way to configure position of nested rules when working with scss syntax (not tested on less/sass). I thought that nested rules would be...

type: enhancement

Ok, i do 1. npm remove csscomb -g 2. npm remove csscomb 2. remove package.json from project root 3. npm i csscomb 4. npm i csscomb -g 5. put config...

I get the includes with wrong identation and an empty line between ``` @mixin otb-sub-modal-settings() { @include otb-modal-title-settings; @include otb-modal-footer-settings; @include otb-label-settings; @include otb-text-input-settings; @include otb-link-like-settings; } ``` or ```...

I'd expect the results of `"eof-newline": true` to put a newline after every https://github.com/csscomb/csscomb.js/blob/dev/doc/options.md#eof-newline However that is not happening when I run CSS Comb on an entire file. Here is...

type: bug
category: core

Hi everyone! Is it possible to define the order of ampersands[&]? Currently the '&'s are being sorted to the end of the scope. I couldn't find anything in the documentation...

category: question

When I run CSScomb in my file "_tools.scss" that contains the function ```sass @function encodecolor($string) { @if type-of($string) == 'color' { $hex: str-slice(ie-hex-str($string), 4); $string:unquote("#{$hex}"); } $string: '%23' + $string;...

type: bug

I see the [documentation](https://github.com/csscomb/csscomb.js/blob/dev/doc/options.md#sort-order-vs-preprocessors) but I don't found a way to sort by `tag`, `id`, `class` and `@media`. If is not possible, I recommend this implementation. ![ea753fceba2b4251aeb3d190ccf37940](https://cloud.githubusercontent.com/assets/12045722/18116615/b1d67c5c-6f06-11e6-9963-731d9fabe38a.png) ## --- Want...

category: question

Hi, I can see in the docs you can exclude processing whole files or directories, but I'm wondering whether there's a way to exclude processing particular values in a css...

category: question