discourse/stylelint.config.mjs
David Taylor 9e7384298b
DEV: Introduce postcss minmax transform (#31885)
This will auto-transform media query range syntax like `width < 100px`
into the more-widely-supported min/max-width syntax
2025-03-18 19:28:52 +00:00

7 lines
133 B
JavaScript

export default {
extends: ["@discourse/lint-configs/stylelint"],
rules: {
"media-feature-range-notation": "context",
},
};