pdf.js/.stylelintrc
Jonas Jenwald 246a6f9d13 Enable the Stylelint length-zero-no-unit rule
Note that these changes were done automatically, using `gulp lint --fix`.
With this rule, we'll thus enforce a *consistent* formatting of zero-lengths in our CSS files.

Please find additional details about the Stylelint rule at https://stylelint.io/user-guide/rules/length-zero-no-unit
2021-01-10 14:09:36 +01:00

18 lines
235 B
Plaintext

{
"plugins": [
"stylelint-prettier"
],
"extends": [
"stylelint-prettier/recommended"
],
"rules": {
"block-no-empty": true,
"length-zero-no-unit": [true, {
ignore: ["custom-properties"]
}],
},
}