webapp/.stylelintrc.json
Untone ee16c920be
Some checks failed
deploy / Linting (push) Successful in 48s
deploy / Run end-to-end tests (push) Failing after 1m24s
deploy / Update templates on Mailgun (push) Has been skipped
deploy / Github (push) Failing after 2s
biome-fix
2024-02-04 14:55:38 +03:00

35 lines
925 B
JSON

{
"extends": ["stylelint-config-standard-scss"],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"keyframes-name-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"selector-class-pattern": null,
"no-descending-specificity": null,
"scss/function-no-unknown": null,
"scss/no-global-function-names": null,
"function-url-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"order/order": ["custom-properties", "declarations"],
"scss/dollar-variable-pattern": [
"^[a-z][a-zA-Z]+$",
{
"ignore": "global"
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "export"]
}
],
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["box-decoration-break"]
}
]
},
"defaultSeverity": "warning"
}