.stylelintrc 205 B

123456789101112
  1. {
  2. "extends": "stylelint-config-recommended",
  3. "rules": {
  4. "at-rule-no-unknown": [
  5. true,
  6. {
  7. "ignoreAtRules": ["extends", "tailwind"]
  8. }
  9. ],
  10. "block-no-empty": null
  11. }
  12. }