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
I'm using it in my project and there seems to be a problem. The --fix directive deletes the @include @import eg. code
@include
@import
package: "postcss-sass": "^0.5.0", "stylelint": "^14.11.0", "stylelint-order": "^5.0.0",
"postcss-sass": "^0.5.0",
"stylelint": "^14.11.0",
"stylelint-order": "^5.0.0",
my stylelintrc.json
{ "customSyntax": "postcss-sass", "ignoreDisables": true, "defaultSeverity": "warning", "plugins": ["stylelint-order"], "rules": { "string-quotes": "single", "at-rule-empty-line-before": null, "length-zero-no-unit": true, "number-leading-zero": "never", "at-rule-no-unknown": [ true, { "ignoreAtRules": [ "extend", "keyframes", "media", "include", "import" ] } ], "selector-type-no-unknown": [ true, { "ignore": ["custom-elements", "default-namespace"] } ], "font-family-no-missing-generic-family-keyword": null, "order/properties-order": [ "position", "top", "right", "bottom", "left", "z-index", "display", "float", "width", "height", "max-width", "max-height", "min-width", "min-height", "padding", "padding-top", "padding-right", "padding-bottom", "padding-left", "margin", "margin-top", "margin-right", "margin-bottom", "margin-left", "margin-collapse", "margin-top-collapse", "margin-right-collapse", "margin-bottom-collapse", "margin-left-collapse", "overflow", "overflow-x", "overflow-y", "clip", "clear", "font", "font-family", "font-size", "font-smoothing", "osx-font-smoothing", "font-style", "font-weight", "line-height", "letter-spacing", "word-spacing", "color", "text-align", "text-decoration", "text-indent", "text-overflow", "text-rendering", "text-size-adjust", "text-shadow", "text-transform", "word-break", "word-wrap", "white-space", "vertical-align", "list-style", "list-style-type", "list-style-position", "list-style-image", "pointer-events", "cursor", "background", "background-color", "border", "border-radius", "content", "outline", "outline-offset", "opacity", "filter", "visibility", "size", "transform" ] } }
The text was updated successfully, but these errors were encountered:
Do not check the format of SASS files with stylelint
stylelint
9eb3ccc
We have to combine `postcss-sass` with `stylelint` to format SASS files, but `postcss-sass` is no longer maintained. See AleshaOleg/postcss-sass#175.
Do not check the format of SASS files with stylelint (#56)
91acf89
No branches or pull requests
I'm using it in my project and there seems to be a problem. The --fix directive deletes the
@include
@import
eg. codepackage:
"postcss-sass": "^0.5.0",
"stylelint": "^14.11.0",
"stylelint-order": "^5.0.0",
my stylelintrc.json
{ "customSyntax": "postcss-sass", "ignoreDisables": true, "defaultSeverity": "warning", "plugins": ["stylelint-order"], "rules": { "string-quotes": "single", "at-rule-empty-line-before": null, "length-zero-no-unit": true, "number-leading-zero": "never", "at-rule-no-unknown": [ true, { "ignoreAtRules": [ "extend", "keyframes", "media", "include", "import" ] } ], "selector-type-no-unknown": [ true, { "ignore": ["custom-elements", "default-namespace"] } ], "font-family-no-missing-generic-family-keyword": null, "order/properties-order": [ "position", "top", "right", "bottom", "left", "z-index", "display", "float", "width", "height", "max-width", "max-height", "min-width", "min-height", "padding", "padding-top", "padding-right", "padding-bottom", "padding-left", "margin", "margin-top", "margin-right", "margin-bottom", "margin-left", "margin-collapse", "margin-top-collapse", "margin-right-collapse", "margin-bottom-collapse", "margin-left-collapse", "overflow", "overflow-x", "overflow-y", "clip", "clear", "font", "font-family", "font-size", "font-smoothing", "osx-font-smoothing", "font-style", "font-weight", "line-height", "letter-spacing", "word-spacing", "color", "text-align", "text-decoration", "text-indent", "text-overflow", "text-rendering", "text-size-adjust", "text-shadow", "text-transform", "word-break", "word-wrap", "white-space", "vertical-align", "list-style", "list-style-type", "list-style-position", "list-style-image", "pointer-events", "cursor", "background", "background-color", "border", "border-radius", "content", "outline", "outline-offset", "opacity", "filter", "visibility", "size", "transform" ] } }
The text was updated successfully, but these errors were encountered: