2022-02-11 15:13:07 +01:00
|
|
|
{
|
2022-02-20 12:39:06 +01:00
|
|
|
"extends": [
|
|
|
|
"stylelint-config-recommended-scss"
|
|
|
|
],
|
2022-03-19 21:20:02 +01:00
|
|
|
"ignoreFiles": [
|
|
|
|
"dist/*.css"
|
|
|
|
],
|
2022-02-20 12:39:06 +01:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-declaration-block-no-ignored-properties",
|
|
|
|
"stylelint-high-performance-animation",
|
|
|
|
"stylelint-group-selectors",
|
2022-04-08 20:59:11 +02:00
|
|
|
"./dev/wholePixel.js"
|
2022-02-20 12:39:06 +01:00
|
|
|
],
|
2022-02-11 15:13:07 +01:00
|
|
|
"rules": {
|
2022-07-08 14:59:54 +02:00
|
|
|
"property-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreProperties": [
|
|
|
|
"composes",
|
|
|
|
"compose-with"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2022-02-20 12:39:06 +01:00
|
|
|
"number-leading-zero": "always",
|
|
|
|
"selector-attribute-quotes": "always",
|
|
|
|
"scss/operator-no-unspaced": null,
|
|
|
|
"no-descending-specificity": null,
|
|
|
|
"plugin/declaration-block-no-ignored-properties": true,
|
|
|
|
"plugin/no-low-performance-animation-properties": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignore": "paint-properties"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"plugin/stylelint-group-selectors": [true, { "severity": "warning" }],
|
2022-04-08 20:59:45 +02:00
|
|
|
"plugin/whole-pixel": [true, { "ignoreList": ["letter-spacing"] }],
|
|
|
|
"selector-pseudo-class-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignorePseudoClasses": ["global"]
|
|
|
|
}
|
|
|
|
]
|
2022-02-11 15:13:07 +01:00
|
|
|
}
|
|
|
|
}
|