csscomb.js
csscomb.js copied to clipboard
CSS coding style formatter
Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. Commits - [`754f0c2`](https://github.com/jonschlinkert/mixin-deep/commit/754f0c20e1bc13ea5a21a64fbc7d6ba5f7b359b9) 1.3.2 - [`90ee1fa`](https://github.com/jonschlinkert/mixin-deep/commit/90ee1fab375fccfd9b926df718243339b4976d50) ensure keys are valid when mixing in values - See full diff in [compare view](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2) Maintainer changes This...
## Summary cssCOMB is adding an empty line between @imports, how can avoid only that, because works fine but those lines are weird. ## Before: ` @import 'src/scss/animations'; @import 'src/scss/variables/colors';...
Hello, i want to support also Internet Explorer and therefore i have to do the following things for Fonts: ``` @font-face { font-family: "test"; src: url("#test.eot"); src: url("test.eot?#iefix") format("embedded-opentype"), url("test.woff")...
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: ``` @import 'size'; @import 'color'; @import 'footer-vars';...
Hi, I just updated to node 8.16.1 from 6.4.0. I'm on csscomb version 4.2. When running it seem to execute but when running it verbose it actually shows that it's...
Hi, I just updated grunt-csscomb to version 4.0.0 from 3.11. It comes with csscomb 4.2. Running node 6.4.0. Unfortunately after running it, it moved all my leading combinators. This behavior...
repro.scss: ``` .a-class-name { $c: 1; $d: 2; } ``` .csscomb.json: ``` { "sort-order": ["..."], "sort-order-fallback": "abc" } ``` Running csscomb with this combination gives the following exception: ``` (node:1796)...
Consider the following CSS: _Before:_ ``` body { background-color: #111; }.landing-page { color: black; } ``` _Expected behavior:_ ``` body { background-color: #111; } .landing-page { color: black; } ```...
CSSComb doesn't recognize the RGBA format in hexadecimals. When using `"color-shorthand": true`, it will transform `#0000004d` into `#0004d` messing up the color itself.