e07e6d46d7
Media queries range syntax not supported by Safari for iOS under 16.4
See also:
- https://caniuse.com/?search=media-queries
This reverts commit 1682ce9d7c
.
23 lines
805 B
JSON
23 lines
805 B
JSON
{
|
|
"extends": "stylelint-config-standard-scss",
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"shorthand-property-no-redundant-values": null,
|
|
"at-rule-no-vendor-prefix": null,
|
|
"property-no-vendor-prefix": null,
|
|
"selector-no-vendor-prefix": null,
|
|
"value-no-vendor-prefix": null,
|
|
"color-function-notation": "legacy",
|
|
"alpha-value-notation": "number",
|
|
"selector-not-notation": "simple",
|
|
"color-hex-length": "long",
|
|
"declaration-block-single-line-max-declarations": 3,
|
|
"scss/operator-no-newline-after": null,
|
|
"rule-empty-line-before": [
|
|
"always",
|
|
{ "ignore": ["after-comment", "first-nested", "inside-block"] }
|
|
],
|
|
"value-keyword-case": ["lower", { "ignoreProperties": ["/^\\$/"] }],
|
|
"media-feature-range-notation": "prefix"
|
|
}
|
|
}
|