{ "extends": ["stylelint-config-recommended", "stylelint-config-tailwindcss"], "rules": { "media-feature-range-notation": "prefix", "no-descending-specificity": null, "at-rule-no-unknown": [ true, { "ignoreAtRules": [ "theme", "source", "utility", "variant", "custom-variant", "plugin", "tailwind", "apply", "layer", "config", "variants", "responsive", "screen" ] } ], "function-no-unknown": [ true, { "ignoreFunctions": ["theme"] } ], "color-hex-length": "long", "color-function-notation": null, "declaration-block-no-redundant-longhand-properties": null, "shorthand-property-no-redundant-values": null, "property-no-vendor-prefix": null, "property-no-unknown": [ true, { "ignoreProperties": ["text-fill-color"] } ], "alpha-value-notation": null, "selector-class-pattern": null, "selector-id-pattern": null, "selector-no-vendor-prefix": null, "selector-not-notation": null, "value-keyword-case": [ "lower", { "camelCaseSvgKeywords": true } ], "at-rule-empty-line-before": [ "always", { "except": ["first-nested"], "ignore": ["after-comment", "blockless-after-same-name-blockless"], "ignoreAtRules": ["if", "else"] } ], "selector-pseudo-class-no-unknown": [ true, { "ignorePseudoClasses": ["global", "local"] } ], "custom-property-no-missing-var-function": null, "property-no-unknown": [ true, { "ignoreProperties": ["interpolate-size"] } ] }, "ignorePseudoClasses": [":global", ":local"] }