.stylelintrc.json 461 B

123456789101112131415161718192021222324
  1. {
  2. "extends": [
  3. "@lincy/stylelint-config"
  4. ],
  5. "rules": {
  6. "at-rule-no-unknown": [
  7. true,
  8. {
  9. "ignoreAtRules": [
  10. "tailwind",
  11. "apply",
  12. "variants",
  13. "responsive",
  14. "screen",
  15. "use"
  16. ]
  17. }
  18. ],
  19. "no-duplicate-selectors": null,
  20. "color-function-notation": null,
  21. "font-family-no-missing-generic-family-keyword": null,
  22. "keyframes-name-pattern": null
  23. }
  24. }