.stylelintrc.json 175 B

1234567891011
  1. {
  2. "extends": ["stylelint-config-standard", "stylelint-config-html/html"],
  3. "rules": {
  4. "at-rule-no-unknown": [
  5. true,
  6. {
  7. "ignoreAtRules": ["tailwind"]
  8. }
  9. ]
  10. }
  11. }