castopod/.stylelintrc.json

20 lines
329 B
JSON

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