2017-05-19 18:17:37 +00:00
|
|
|
{
|
|
|
|
"extends": "stylelint-config-standard",
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-no-browser-hacks/lib"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"comment-empty-line-before": null,
|
|
|
|
"function-linear-gradient-no-nonstandard-direction": null,
|
|
|
|
"function-whitespace-after": null,
|
2018-03-04 21:23:26 +00:00
|
|
|
"no-descending-specificity": null,
|
|
|
|
"no-duplicate-selectors": null,
|
2017-05-19 18:17:37 +00:00
|
|
|
"no-unknown-animations": true,
|
2018-05-23 04:39:36 +00:00
|
|
|
"media-feature-name-no-unknown": [true, {
|
|
|
|
"ignoreMediaFeatureNames": ["prefers-reduced-motion"]
|
|
|
|
}],
|
2018-01-28 08:11:52 +00:00
|
|
|
"number-leading-zero": "always",
|
2017-05-19 18:17:37 +00:00
|
|
|
"plugin/no-browser-hacks": [true, {
|
|
|
|
"browsers": [
|
|
|
|
"ie >= 9",
|
|
|
|
"edge >= 13",
|
|
|
|
"firefox >= 5",
|
|
|
|
"opera >= 12",
|
|
|
|
"safari >= 5",
|
|
|
|
"chrome >= 56"
|
|
|
|
]
|
|
|
|
}],
|
|
|
|
"property-no-unknown": null,
|
|
|
|
"rule-empty-line-before": null,
|
|
|
|
"selector-pseudo-element-colon-notation": null,
|
|
|
|
"shorthand-property-no-redundant-values": null,
|
2018-01-14 21:22:53 +00:00
|
|
|
"unit-whitelist": ["deg", "em", "ex", "ms", "rem", "%", "s", "px", "vw", "vh"]
|
2017-05-19 18:17:37 +00:00
|
|
|
},
|
|
|
|
"ignoreFiles": [
|
|
|
|
"assets/vendor/**/*.css",
|
|
|
|
"tests/Drupal/Tests/Core/Asset/css_test_files/**/*.css"
|
|
|
|
]
|
|
|
|
}
|