Files
goose/ui-v2/.stylelintrc.json
2025-05-28 14:33:02 -07:00

15 lines
348 B
JSON

{
"extends": ["stylelint-config-standard"],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "theme", "custom-variant"]
}
],
"at-rule-no-deprecated": null,
"custom-property-pattern": null,
"no-descending-specificity": null
}
}