mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
27 lines
463 B
JSON
27 lines
463 B
JSON
{
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": [
|
|
"tailwind",
|
|
"apply",
|
|
"responsive",
|
|
"variants",
|
|
"screen",
|
|
"layer"
|
|
]
|
|
}
|
|
],
|
|
"function-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreFunctions": ["theme"]
|
|
}
|
|
],
|
|
"no-descending-specificity": null,
|
|
"selector-class-pattern": null
|
|
}
|
|
}
|