webapp/.stylelintrc.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2022-09-09 11:53:35 +00:00
{
2024-07-12 13:19:49 +00:00
"defaultSeverity": "warning",
2024-07-12 11:18:10 +00:00
"extends": ["stylelint-config-standard-scss", "stylelint-config-recommended"],
2024-02-04 11:55:38 +00:00
"plugins": ["stylelint-order", "stylelint-scss"],
2022-09-09 11:53:35 +00:00
"rules": {
2024-07-12 13:19:49 +00:00
"annotation-no-unknown": [
true,
{
"ignoreAnnotations": ["default"]
}
],
2024-07-12 11:18:10 +00:00
"at-rule-no-unknown": null,
2024-01-23 16:32:57 +00:00
"declaration-block-no-redundant-longhand-properties": null,
2022-09-09 11:53:35 +00:00
"font-family-no-missing-generic-family-keyword": null,
2024-07-12 13:19:49 +00:00
"function-no-unknown": [
true,
2024-02-04 11:55:38 +00:00
{
2024-07-12 13:19:49 +00:00
"ignoreFunctions": ["divide", "transparentize"]
2024-02-04 11:55:38 +00:00
}
2023-02-10 01:19:20 +00:00
],
2024-07-12 13:19:49 +00:00
"function-url-quotes": null,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"order/order": [
2023-05-01 18:32:32 +00:00
{
2024-07-12 13:19:49 +00:00
"type": "at-rule",
"name": "include"
},
"custom-properties",
"declarations",
"rules"
2023-05-01 18:32:32 +00:00
],
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["box-decoration-break"]
}
2024-07-12 11:18:10 +00:00
],
"scss/at-function-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-colon-space-after": "always-single-line",
"scss/dollar-variable-colon-space-before": "never",
2024-07-12 13:19:49 +00:00
"scss/dollar-variable-pattern": [
"^[a-z][a-zA-Z]+$",
{
"ignore": "global"
}
],
2024-07-12 11:18:10 +00:00
"scss/double-slash-comment-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["between-comments", "stylelint-commands"]
}
],
"scss/double-slash-comment-whitespace-inside": "always",
2024-07-12 13:19:49 +00:00
"scss/function-no-unknown": null,
"scss/no-duplicate-dollar-variables": null,
"scss/no-duplicate-mixins": null,
"scss/no-global-function-names": null,
2024-07-12 11:18:10 +00:00
"scss/operator-no-newline-after": null,
"scss/operator-no-newline-before": null,
"scss/operator-no-unspaced": null,
2024-07-12 13:19:49 +00:00
"scss/percent-placeholder-pattern": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": [
2024-07-12 11:18:10 +00:00
true,
{
2024-07-12 13:19:49 +00:00
"ignorePseudoClasses": ["global", "export"]
2024-07-12 11:18:10 +00:00
}
2023-05-01 18:32:32 +00:00
]
2024-07-12 13:19:49 +00:00
}
2022-09-09 11:53:35 +00:00
}