mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 13:48:05 -06:00
17 lines
468 B
JavaScript
17 lines
468 B
JavaScript
export default {
|
|
extends: "stylelint-config-standard",
|
|
plugins: [
|
|
"stylelint-order"
|
|
],
|
|
ignoreFiles: ["private/css/lib/*.css"],
|
|
rules: {
|
|
"color-hex-length": "long",
|
|
"comment-empty-line-before": null,
|
|
"comment-whitespace-inside": null,
|
|
"no-descending-specificity": null,
|
|
"order/properties-alphabetical-order": true,
|
|
"selector-class-pattern": null,
|
|
"selector-id-pattern": null,
|
|
}
|
|
};
|