2020-08-29 16:35:27 +02:00
|
|
|
{
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-prettier"
|
|
|
|
],
|
|
|
|
|
|
|
|
"rules": {
|
2023-02-11 14:41:32 +01:00
|
|
|
"prettier/prettier": true,
|
|
|
|
|
2020-08-29 16:35:27 +02:00
|
|
|
"block-no-empty": true,
|
2023-09-21 13:39:09 +02:00
|
|
|
"declaration-block-no-duplicate-properties": true,
|
2023-03-25 10:04:29 +01:00
|
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
2023-04-09 12:38:49 +02:00
|
|
|
"declaration-property-value-disallowed-list": {
|
|
|
|
"float": ["inline-start", "inline-end"]
|
|
|
|
},
|
2021-01-10 14:02:38 +01:00
|
|
|
"length-zero-no-unit": [true, {
|
|
|
|
ignore: ["custom-properties"]
|
|
|
|
}],
|
2023-04-18 15:46:51 +02:00
|
|
|
"selector-pseudo-element-colon-notation": "double",
|
2021-01-22 14:36:02 +01:00
|
|
|
"shorthand-property-no-redundant-values": true,
|
2020-08-29 16:35:27 +02:00
|
|
|
},
|
|
|
|
}
|