a4dfa04a0b
Note that these changes were done automatically, using `gulp lint --fix`. This rule will help avoid unnecessary repetition in the CSS; please see https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties/
17 lines
324 B
Plaintext
17 lines
324 B
Plaintext
{
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
|
|
"block-no-empty": true,
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
|
"length-zero-no-unit": [true, {
|
|
ignore: ["custom-properties"]
|
|
}],
|
|
"shorthand-property-no-redundant-values": true,
|
|
},
|
|
}
|