Just switched from Atom to VS Code. Very happy to have found a CSS Comb extension but I'm having some issues.
When I run CSSComb: Format styles on my style.css file, it gives me an error:
Running the contributed command:'csscomb.execute' failed.
Here is the configuration in my User Settings:
"csscomb.preset": {
"remove-empty-rulesets": true,
"always-semicolon": true,
"color-case": "lower",
"block-indent": "\t",
"color-shorthand": false,
"element-case": "lower",
"eof-newline": true,
"leading-zero": true,
"quotes": "single",
"sort-order-fallback": "abc",
"space-before-colon": "",
"space-after-colon": " ",
"space-before-combinator": " ",
"space-after-combinator": " ",
"space-between-declarations": "\n",
"space-before-opening-brace": " ",
"space-after-opening-brace": "\n",
"space-after-selector-delimiter": "\n",
"space-before-selector-delimiter": "",
"space-before-closing-brace": "\n",
"strip-spaces": true,
"unitless-zero": true
}
I'm running Visual Studio Code 1.16.1 (should be up-to-date) on macOS 10.12.6 Sierra.
Any ideas on how to fix this issue?
Thanks