mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 14:48:08 +02:00
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
18 lines
287 B
Text
18 lines
287 B
Text
{
|
|
"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,
|
|
},
|
|
}
|