We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my stylelint rule in stylelint.rc
{ "plugins": [ "stylelint-scss" ], "rules": { "function-calc-no-unspaced-operator":true, "function-linear-gradient-no-nonstandard-direction":true, "string-no-newline":true, "unit-no-unknown":true, "property-no-unknown":true, "keyframe-declaration-no-important":true, "block-no-empty":true, "indentation": "tab", "selector-pseudo-class-no-unknown":[true, {"ignorePseudoClasses": ["global"]}], "selector-pseudo-element-no-unknown":true, "selector-type-no-unknown":true, "media-feature-name-no-unknown":true, "at-rule-no-unknown":true, "comment-no-empty":true, "color-no-invalid-hex":true, "font-family-no-duplicate-names":true, "no-empty-source":true, "no-extra-semicolons":true, "no-unknown-animations":true, "declaration-block-no-duplicate-properties": true, "no-duplicate-selectors": true } }
When I run stylelint fmt
it turns my original code
.neo { width: 100%; } .kiu { padding-top: 80px; }
to this
There is a new new after .neo block in the formatted result. Even though I didn't set any rule about new line after block.
.neo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
my stylelint rule in stylelint.rc
When I run stylelint fmt
it turns my original code
to this
There is a new new after
.neo
block in the formatted result. Even though I didn't set any rule about new line after block.The text was updated successfully, but these errors were encountered: