AleshaOleg / AleshaOleg/postcss-sass

Is this library still usable?

Open
#175 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
92
Forks
12
PR merge metrics
No merged PRs in 30d

Description

I'm using it in my project and there seems to be a problem. The --fix directive deletes the `@include` `@import` eg. code

![image](https://user-images.githubusercontent.com/37212209/188585770-eb421d88-6503-48b3-9fb6-1fd9c6b9b905.png)

package:
`"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"
]
}
}
`

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.