stylefmt
stylefmt copied to clipboard
stylefmt is a tool that automatically formats stylesheets.
**Environment** Visual Studio Code 1.28.1 **Actual Behavior** `string-quotes: single` is set in my stylelintrc file. Most code is auto-formatted correctly, except for in SCSS functions, where `@warn`, `@error`, and `@debug`...
Hi @morishitter , I was juts wondering if this library is still maintain as I see so many unfixed issues that are pretty old. Also the last release is 1...
.stylelintrc ```json { "extends": "stylelint-config-standard" } ```
The `[always]` option for the `selector-list-comma-newline-after` rule in combination with rules like `selector-list-comma-space-after|before` is not modifying the code correctly. When the output should be something like this: ```css .selector-one, .selector-one,...
SCSS has the ability to define variables as maps (https://codepen.io/jakealbaugh/post/using-sass-functions-to-access-complex-variable-maps), but actually, the Formatter enforces that all variables should be on the same line. e.g.: Something like this: ``` $buttonColors:...
stylefmt ignores those commands ``` /* stylelint-disable */ /* stylelint-enable */ ```
There is currently a problem with SVGs in data-urls. ```css background-image: url('data:image/svg+xml;utf8, ... '); ``` After formatting stylefmt return this: ```css background-image: url('data:image/svg+xml;utf8, ... '); ``` A space is added...
Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...
As far as I can tell, stylefmt looks up the `color-hex-case` and then uses the result to format not only the HEX cases, but other cases, like rgba and even...
Stylefmt is removing the spaces between the closing parenthesis and opening brackets ( `){` ) in this snippet: ``` .m-members-list--responsive { margin-right: bm(-2); .m-members-list__line-item { @include media($tablet--only){ @include columns--two; }...