castopod/.stylelintrc.json
2023-06-05 16:20:19 +00:00

20 lines
326 B
JSON

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