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

I am using Visual Studio Code version 1.18.1 on Windows 7. In my sass files there is double newline between @import statements. Before: ``` .footer__fixed { display: flex; // justify-content:...

type: bug

The rule `lines-between-rulesets` moves the comment of previous rule. before: ```css border-radius: $line-height * 1em; // sass-lint:disable-line property-units &::before { vertical-align: text-bottom; content: '\25a0\a0'; } ``` After: ```css border-radius: $line-height...

type: bug

- current directory is `/home/user/project` - there's following value in `/home/user/project/.csscomb.json`: ``` json "exclude": [ "node_modules/**" ] ``` - css files are passed to csscomb from `find /home/user/project -name '*.css'`...

type: bug

I made a [CSScomb plugin for Espresso 5](https://github.com/eablokker/espresso-csscomb), for anyone who uses that code editor. It's a fork of the old plugin, which no longer works in the new version...

category: docs

Hi, I would like yo know if there is a way to deactivate some features via the `User/CSScomb.sublime-settings` I just want to keep the reorder of the CSS properties and...

category: question

When using CSSComb on a SASS file that has multiple includes in a single selector, in a file on Windows that is using CRLF for EOL, the indenting gets all...

type: bug
category: core

Hello. Please tell me why CSScomb change line ending from CRLF to LF on Windows? Thanks. ## --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/11799832-end-of-line-on-windows?utm_campaign=plugin&utm_content=tracker%2F214563&utm_medium=issues&utm_source=github)** We accept...

type: bug
category: core

Hey, I struggled a little bit with the csscomb options. I have a *main.scss* file where all my `@import` are located and other `.scss` files where I have some `@include`....

There doesn't appear to be an option to disable the sorting of rules (not properties)? I don't want csscomb to put my includes/breakpoints above normal rules as this would obviously...

How to set config for ignore `@apply` mixins rule? I need leave the position of the rules. I have two use cases for using mixins on top and on bottom....