37 lines
889 B
JSON
37 lines
889 B
JSON
{
|
|
"files": ["statc/css/**/*.css"],
|
|
"plugins": [
|
|
"stylelint-value-no-unknown-custom-properties"
|
|
],
|
|
"rules": {
|
|
"color-no-hex": true,
|
|
"color-named": "never",
|
|
"function-disallowed-list": ["rgb", "rgba", "hsl", "hsla", "hwb", "oklch", "oklab"],
|
|
"selector-disallowed-list": ["/\\[data-theme/"],
|
|
"csstools/value-no-unknown-custom-properties": [true, {
|
|
"importFrom": [
|
|
"static/css/base/variables.css"
|
|
]
|
|
}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["static/css/base/variables.css"],
|
|
"rules": {
|
|
"color-no-hex": null,
|
|
"color-named": null,
|
|
"function-disallowed-list": null
|
|
}
|
|
},
|
|
{
|
|
"files": ["static/css/themes/*"],
|
|
"rules": {
|
|
"color-no-hex": null,
|
|
"color-named": null,
|
|
"function-disallowed-list": null,
|
|
"selector-disallowed-list": null
|
|
}
|
|
}
|
|
]
|
|
}
|