Files
qBittorrent/src/webui/www/.stylelintrc.json
2023-03-28 22:20:37 +08:00

20 lines
510 B
JSON

{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"ignoreFiles": ["private/css/lib/*.css"],
"rules": {
"color-hex-length": null,
"comment-empty-line-before": null,
"comment-whitespace-inside": null,
"function-name-case": null,
"length-zero-no-unit": null,
"no-descending-specificity": null,
"order/properties-alphabetical-order": true,
"selector-class-pattern": null,
"selector-id-pattern": null,
"value-keyword-case": null
}
}