.stylelintrc.json 437 B

1234567891011121314151617181920212223
  1. {
  2. "extends": [
  3. "stylelint-config-standard"
  4. ],
  5. "rules": {
  6. "at-rule-no-unknown": [
  7. true,
  8. {
  9. "ignoreAtRules": [
  10. "tailwind",
  11. "apply",
  12. "variants",
  13. "responsive",
  14. "screen"
  15. ]
  16. }
  17. ],
  18. "declaration-block-trailing-semicolon": null,
  19. "no-descending-specificity": null,
  20. "declaration-empty-line-before": null,
  21. "block-no-empty": null
  22. }
  23. }