| 123456789101112131415161718192021222324 |
- {
- "extends": [
- "@lincy/stylelint-config"
- ],
- "rules": {
- "at-rule-no-unknown": [
- true,
- {
- "ignoreAtRules": [
- "tailwind",
- "apply",
- "variants",
- "responsive",
- "screen",
- "use"
- ]
- }
- ],
- "no-duplicate-selectors": null,
- "color-function-notation": null,
- "font-family-no-missing-generic-family-keyword": null,
- "keyframes-name-pattern": null
- }
- }
|