e018659955
support a custom UI theme Change-Id: Ic2f25fcc4620b06710c3ff1f26f84aba43881762
22 lines
501 B
JSON
22 lines
501 B
JSON
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-css-modules",
|
|
"stylelint-config-rational-order",
|
|
"stylelint-config-prettier"
|
|
],
|
|
"customSyntax": "postcss-less",
|
|
"plugins": ["stylelint-order"],
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"at-rule-no-unknown": null,
|
|
"color-function-notation": "legacy",
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": ["/Color$/", "/Height$/", "productsColumnWidth"]
|
|
}
|
|
]
|
|
}
|
|
}
|