mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-06 01:08:03 +00:00
32 lines
878 B
Plaintext
32 lines
878 B
Plaintext
{
|
|
"processors": ["stylelint-processor-styled-components"],
|
|
"extends": [
|
|
"stylelint-config-styled-components",
|
|
"stylelint-config-recommended",
|
|
],
|
|
"plugins": ["stylelint-declaration-use-variable"],
|
|
"rules": {
|
|
"block-no-empty": null,
|
|
"color-named": "never",
|
|
"color-no-hex": true,
|
|
"function-disallowed-list": ["/^rgb/", "/^hsl/"],
|
|
"no-empty-source": null,
|
|
"no-descending-specificity": null,
|
|
"no-duplicate-selectors": null,
|
|
"property-no-vendor-prefix": [true, {
|
|
"ignoreProperties": ["tab-size", "hyphens"],
|
|
}],
|
|
"selector-type-no-unknown": null,
|
|
"sh-waqar/declaration-use-variable": [[
|
|
"border-radius",
|
|
"border-top-left-radius",
|
|
"border-top-right-radius",
|
|
"border-bottom-left-radius",
|
|
"border-bottom-right-radius",
|
|
"font-family",
|
|
"font-size",
|
|
"z-index"
|
|
]],
|
|
},
|
|
}
|