Files
uptime-kuma/.stylelintrc
copilot-swe-agent[bot] 692be2b476 Fix backend tests and linting errors
Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com>
2026-01-18 19:02:00 +00:00

19 lines
565 B
Plaintext

{
"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,
"function-no-unknown": null
}
}