webapp/.stylelintrc

26 lines
589 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
{
"extends": [
2023-04-04 00:09:56 +00:00
"stylelint-config-standard-scss"
2022-09-09 11:53:35 +00:00
],
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"selector-class-pattern": null,
"no-descending-specificity": null,
"scss/function-no-unknown": null,
2023-02-10 01:19:20 +00:00
"scss/no-global-function-names": null,
2022-09-09 11:53:35 +00:00
"function-url-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"order/order": [
"custom-properties",
"declarations"
2023-02-10 01:19:20 +00:00
],
"scss/dollar-variable-pattern": ["^[a-z][a-zA-Z]+$", {
"ignore": "global"
}]
},
"defaultSeverity": "warning"
2022-09-09 11:53:35 +00:00
}