mirror of
https://github.com/discourse/discourse.git
synced 2025-04-19 12:39:08 +08:00

This will auto-transform media query range syntax like `width < 100px` into the more-widely-supported min/max-width syntax
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
export default {
|
|
extends: ["@discourse/lint-configs/stylelint"],
|
|
rules: {
|
|
"media-feature-range-notation": "context",
|
|
},
|
|
};
|