1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00
pdf.js/.stylelintrc

20 lines
429 B
Text
Raw Normal View History

{
"plugins": [
"stylelint-prettier"
],
"rules": {
"prettier/prettier": true,
"block-no-empty": true,
"declaration-block-no-redundant-longhand-properties": true,
"declaration-property-value-disallowed-list": {
"float": ["inline-start", "inline-end"]
},
"length-zero-no-unit": [true, {
ignore: ["custom-properties"]
}],
"shorthand-property-no-redundant-values": true,
},
}