From fa64dcfd73aceb522fbf103bc76f55734aca0fdf Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 3 Apr 2023 16:09:29 -0400 Subject: [PATCH] stylelint: disable media-feature-range-notation This feature is too new and not widely supported enough. https://caniuse.com/css-media-range-syntax --- .stylelintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 79a548da..2531035c 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -2,6 +2,7 @@ "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