strona-czynna/.stylelintrc.json
Kuba Orlik 6b470fa709 Fix stylelint issues
Reviewers: #reviewers

Subscribers: jenkins-user

Differential Revision: https://hub.sealcode.org/D1598
2025-07-09 14:45:43 +02:00

35 lines
877 B
JSON

{
"extends": ["stylelint-config-standard"],
"ignoreFiles": [
"./coverage/**",
"public/**",
"./node_modules",
"docker_node_modules/**"
],
"globbyOptions": { "gitignore": true },
"rules": {
"selector-class-pattern": null,
"import-notation": "string",
"color-hex-length": null,
"custom-property-empty-line-before": null,
"color-function-notation": null,
"hue-degree-notation": "number",
"value-keyword-case": null,
"length-zero-no-unit": null,
"declaration-empty-line-before": null,
"shorthand-property-no-redundant-values": null,
"alpha-value-notation": null,
"number-max-precision": 6,
"rule-empty-line-before": [
"always",
{
"except": ["after-single-line-comment", "first-nested"]
}
],
"declaration-block-no-redundant-longhand-properties": [
true,
{ "ignoreShorthands": ["place-self", "gap", "grid-gap"] }
]
}
}