80e691d2ad
Please refer to https://stylelint.io/user-guide/rules/declaration-block-no-duplicate-properties
22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
{
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
|
|
"block-no-empty": true,
|
|
"declaration-block-no-duplicate-properties": true,
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
|
"declaration-property-value-disallowed-list": {
|
|
"float": ["inline-start", "inline-end"]
|
|
},
|
|
"length-zero-no-unit": [true, {
|
|
ignore: ["custom-properties"]
|
|
}],
|
|
"selector-pseudo-element-colon-notation": "double",
|
|
"shorthand-property-no-redundant-values": true,
|
|
},
|
|
}
|