38c9f1a37a
Note that these changes were done automatically, using `gulp lint --fix`; this rule will help avoid unnecessary repetition in the CSS. Please find additional details about the Stylelint rule at https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values
19 lines
287 B
Plaintext
19 lines
287 B
Plaintext
{
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
|
|
"extends": [
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
|
|
|
|
"rules": {
|
|
"block-no-empty": true,
|
|
"length-zero-no-unit": [true, {
|
|
ignore: ["custom-properties"]
|
|
}],
|
|
"shorthand-property-no-redundant-values": true,
|
|
},
|
|
}
|