Files
ops-Gazelle/misc/stylelint.json
2025-09-17 22:07:58 +02:00

27 lines
1.1 KiB
JSON

{
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"declaration-block-no-duplicate-properties": [true, {
"ignore": ["consecutive-duplicates-with-different-values"]
}],
"function-url-quotes": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-unknown-animations": true,
"property-no-unknown": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"selector-class-pattern": "[a-z-_]+",
"selector-id-pattern": "[a-z-_]+",
"shorthand-property-no-redundant-values": null,
"unit-allowed-list": ["ch", "deg", "em", "ex", "ms", "rem", "%", "s", "px", "vw", "vh", "rad", "dppx", "dpi", "dpcm", "in", "pt", "fr"],
"scss/at-rule-no-unknown": true,
"scss/comment-no-empty": null,
"scss/dollar-variable-pattern": "[a-z-_]+",
"scss/load-no-partial-leading-underscore": null
}
}