csscomb.js
csscomb.js copied to clipboard
CSS coding style formatter
Actually i expect it works like this: 1. Select something (in PHPStorm or textfile) 2. Copy / Cut 3. Press hotkey in your IDE (actually runs "csscomb -copy" as an...
http://csscomb.com/ goes nowhere
Bumps [minimist](https://github.com/substack/minimist) from 1.2.0 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR aeb3e27 1.2.5...
# My config : ``` { "space-after-selector-delimiter": "\n", "color-case": "lower" } ``` I am using [gulp-csscomb library](https://www.npmjs.com/package/gulp-csscomb) , here is [my Gulp repo](https://github.com/julien-/gulp_browsersync) if you want to test # Before...
You have first-party extensions for other popular IDEs, it would be great to make one for VSCode! I would be so eternally grateful. ❤️ I can even donate to make...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
Added latest gonzales-pe 4.3.0, as gonzales-pe 4.2.4 uses old "dependencies": { "minimist": "1.1.x" }, which reported Vulnerability Affected versions of minimist are vulnerable to prototype pollution. Arguments are not properly...
As of now, if I use this code ``` .wrapper { --gutter: 62px; --width: 1314px; max-width: calc(var(--width) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); } ``` it...
By default CSScomb process `*.css`, `*.less`, `*.sass` and `*.scss` files in matched syntax. You can custom syntax map by `syntax` config. e.g. Using `css` syntax to handle `*.wxss` files ```json...
CSSComb configuration in Visual Studio Code: ```json "csscomb.preset": { "always-semicolon": true, "sort-order": [ "text-align", "text-transform" ] } ``` Initial CSS code (notice missing semicolon after second property): ```css h1 {...