ruffle/web/.stylelintrc.yaml

10 lines
411 B
YAML
Raw Normal View History

2022-01-16 14:39:52 +00:00
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"
2024-07-19 15:24:08 +00:00
selector-no-vendor-prefix: [true, {ignoreSelectors: [":-webkit-full-screen"]}]
color-function-notation: ["modern", {ignore: ["with-var-inside"]}]