hakurei.app/.stylelintrc.json
Daniel Micay fa64dcfd73 stylelint: disable media-feature-range-notation
This feature is too new and not widely supported enough.

https://caniuse.com/css-media-range-syntax
2023-04-03 16:12:40 -04:00

11 lines
278 B
JSON

{
"extends": "stylelint-config-standard",
"rules": {
"comment-empty-line-before": null,
"media-feature-range-notation": null,
"no-descending-specificity": null,
"number-max-precision": null,
"value-no-vendor-prefix": null
}
}