strapi/.stylelintrc

22 lines
409 B
Plaintext
Raw Normal View History

{
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-recommended",
"stylelint-config-styled-components"
],
"rules": {
"font-family-no-missing-generic-family-keyword": null,
2021-04-29 11:11:46 +02:00
"no-descending-specificity": null,
"selector-type-no-unknown": [
null,
{
"ignore": [
"custom-elements"
]
}
]
}
2021-04-29 11:11:46 +02:00
}