castopod/.stylelintrc.json

19 lines
310 B
JSON

{
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"responsive",
"variants",
"screen"
]
}
],
"no-descending-specificity": null
}
}