uptime-kuma/.stylelintrc

17 lines
552 B
Plaintext
Raw Normal View History

2021-07-27 18:33:44 +01:00
{
2021-08-24 16:22:04 +01:00
"extends": "stylelint-config-standard",
"customSyntax": "postcss-html",
2021-08-24 16:22:04 +01:00
"rules": {
"indentation": 4,
2021-08-24 16:38:25 +01:00
"no-descending-specificity": null,
"selector-list-comma-newline-after": null,
"declaration-empty-line-before": null,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
2022-06-28 15:26:27 +01:00
"shorthand-property-no-redundant-values": null,
"color-hex-length": null,
"declaration-block-no-redundant-longhand-properties": null,
"at-rule-no-unknown": null
2021-08-24 16:22:04 +01:00
}
2021-07-27 18:33:44 +01:00
}