.stylelintrc.json 215 B

1234567891011
  1. {
  2. "extends": ["@lincy/stylelint-config"],
  3. "rules": {
  4. "at-rule-no-unknown": [
  5. true,
  6. {
  7. "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "use"]
  8. }
  9. ]
  10. }
  11. }