| 1234567891011121314151617181920212223 |
- {
- "extends": [
- "stylelint-config-standard"
- ],
- "rules": {
- "at-rule-no-unknown": [
- true,
- {
- "ignoreAtRules": [
- "tailwind",
- "apply",
- "variants",
- "responsive",
- "screen"
- ]
- }
- ],
- "declaration-block-trailing-semicolon": null,
- "no-descending-specificity": null,
- "declaration-empty-line-before": null,
- "block-no-empty": null
- }
- }
|