Files
website/frontend/vite-template-master/.stylelintrc.json

44 lines
1.3 KiB
JSON

{
"extends": ["stylelint-config-standard-scss"],
"rules": {
"custom-property-pattern": null,
"selector-class-pattern": null,
"scss/no-duplicate-mixins": null,
"declaration-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"alpha-value-notation": null,
"custom-property-empty-line-before": null,
"property-no-vendor-prefix": null,
"color-function-notation": null,
"length-zero-no-unit": null,
"selector-not-notation": null,
"no-descending-specificity": null,
"comment-empty-line-before": null,
"scss/at-mixin-pattern": null,
"scss/at-rule-no-unknown": null,
"value-keyword-case": null,
"media-feature-range-notation": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
],
"color-named": "never",
"color-no-hex": true,
"function-disallowed-list": [
"rgb",
"rgba",
"hsl",
"hsla"
],
"declaration-property-value-disallowed-list": {
"color": ["/^#/", "/^rgb/", "/^hsl/"],
"background-color": ["/^#/", "/^rgb/", "/^hsl/"],
"border-color": ["/^#/", "/^rgb/", "/^hsl/"],
"fill": ["/^#/", "/^rgb/", "/^hsl/"],
"stroke": ["/^#/", "/^rgb/", "/^hsl/"]
}
}
}