uptime-kuma/.stylelintrc
Frank Elsinga 65b21d2c4b
feat: Add prettier and configure autofix to use it (#6642)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-01-08 10:51:36 +01:00

17 lines
528 B
Text

{
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"customSyntax": "postcss-html",
"rules": {
"no-descending-specificity": null,
"declaration-empty-line-before": null,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"shorthand-property-no-redundant-values": null,
"color-hex-length": null,
"declaration-block-no-redundant-longhand-properties": null,
"at-rule-no-unknown": null
}
}