pdf.js.mirror/stylelint-mozcentral.json
Calixte Denizet 4bf759404c
Add a new linting task in order to detect unused/unknown css variables in the Firefox build
The goal is to be able to catch the errors before making a release.
And fix some css issues (especially the missing css code for the newly added menu.css)
2025-12-08 09:44:33 +01:00

13 lines
283 B
JSON

{
"plugins": ["./external/stylelint/no-unused-custom-properties.mjs"],
"rules": {
"no-unknown-custom-properties": true,
"pdfjs/no-unused-custom-properties": [
true,
{
"ignoreList": ["scale-round-x", "scale-round-y", "input-width"]
}
]
}
}