pdf.js/.stylelintrc
Jonas Jenwald 38c9f1a37a Enable the Stylelint shorthand-property-no-redundant-values rule
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
2021-01-22 14:36:02 +01:00

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,
},
}