web: Disallow range notation in media queries to fix older Safari

This commit is contained in:
Daniel Jacobs 2023-11-22 13:51:16 -05:00 committed by Nathan Adams
parent 438274e930
commit a313e51c32
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,7 @@
extends:
- stylelint-config-standard
- stylelint-prettier/recommended
rules:
# Range syntax from media queries level 4 has only been supported since Safari 16.4.
# We still want to support older Safari versions.
media-feature-range-notation: "prefix"