Ignore 'prefers-reduced-motion' in stylelint

This commit is contained in:
orangemug 2018-05-10 16:30:23 +01:00
parent 7b8b797f9c
commit c241a6e280

View file

@ -64,7 +64,15 @@
"stylelint": {
"extends": "stylelint-config-recommended-scss",
"rules": {
"no-descending-specificity": null
"no-descending-specificity": null,
"media-feature-name-no-unknown": [
true,
{
"ignoreMediaFeatureNames": [
"prefers-reduced-motion"
]
}
]
}
},
"eslintConfig": {