pdf.js/.stylelintrc
Jonas Jenwald a4dfa04a0b Enable the declaration-block-no-redundant-longhand-properties Stylelint rule
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/
2023-03-25 10:08:27 +01:00

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