wx-starlock/.stylelintrc.json

55 lines
1.2 KiB
JSON

{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-recess-order",
"stylelint-config-html/vue"
],
"overrides": [
{
"files": ["**/*.(scss|css|vue|html)"],
"customSyntax": "postcss-scss"
}
],
"rules": {
"no-descending-specificity": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"unit-no-unknown": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": ["page"]
}
],
"color-hex-length": null,
"declaration-property-value-no-unknown": [
true,
{
"ignoreProperties": [
"font-size",
"width",
"height",
"margin",
"padding",
"border-radius",
"line-height",
"box-shadow"
]
}
],
"shorthand-property-no-redundant-values": null,
"alpha-value-notation": null,
"color-function-notation": null,
"declaration-property-value-allowed-list": {
"font-size": ["/rpx$/"],
"width": ["/rpx$/"],
"height": ["/rpx$/"],
"margin": ["/rpx$/"],
"padding": ["/rpx$/"],
"border-radius": ["/rpx$/"],
"line-height": ["/rpx$/"]
}
}
}