43 строки
1.4 KiB
JSON
43 строки
1.4 KiB
JSON
{
|
|
"extends": [
|
|
"stylelint-config-idiomatic-order",
|
|
"stylelint-config-recommended-scss"
|
|
],
|
|
"plugins": [
|
|
"@stylistic/stylelint-plugin"
|
|
],
|
|
"rules": {
|
|
"@stylistic/indentation": 4,
|
|
"@stylistic/no-missing-end-of-source-newline": true,
|
|
"no-descending-specificity": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": ["scrollbar-3dlight-color"]
|
|
}
|
|
],
|
|
"block-no-empty": [
|
|
true,
|
|
{
|
|
"ignore": ["comments"]
|
|
}
|
|
],
|
|
"declaration-property-value-disallowed-list": [
|
|
{
|
|
"color": ["/--denim-button-bg/"],
|
|
"background-color": ["/--denim-button-bg/"],
|
|
"border-color": ["/--denim-button-bg/"],
|
|
"background": ["/--denim-button-bg/"],
|
|
"border": ["/--denim-button-bg/"],
|
|
"fill": ["/--denim-button-bg/"]
|
|
},
|
|
{
|
|
"message": "The --denim-button-bg and --denim-button-bg-rgb variables are deprecated. Please use --button-bg or --button-bg-rgb instead."
|
|
}
|
|
],
|
|
"scss/load-no-partial-leading-underscore": null,
|
|
"scss/at-extend-no-missing-placeholder": null
|
|
}
|
|
}
|