version bump and build

This commit is contained in:
2025-07-15 14:39:37 +02:00
parent 21c31445c3
commit 6e769bad4b
6 changed files with 149 additions and 118 deletions

View File

@@ -1,4 +1,5 @@
{
"defaultSeverity": "error",
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
@@ -12,10 +13,7 @@
"except": ["empty"]
}
],
"declaration-empty-line-before":[
"never",
],
"comment-empty-line-before":[
"comment-empty-line-before": [
"always",
{
"except": ["first-nested"],
@@ -27,7 +25,6 @@
"color-hex-length": "long",
"selector-pseudo-element-colon-notation": "single",
"selector-attribute-quotes": "always",
"string-quotes": "double",
"max-nesting-depth": 3,
"selector-max-specificity": "0,3,2",
"declaration-no-important": true,
@@ -54,7 +51,15 @@
}
],
"unit-allowed-list": ["px", "%", "em", "rem", "vw", "vh", "deg", "s"],
"max-empty-lines": 2,
"max-line-length": 120
"color-named": "never",
"font-family-no-missing-generic-family-keyword": null,
"font-weight-notation": "named-where-possible",
"function-url-no-scheme-relative": true,
"no-descending-specificity": true,
"no-duplicate-selectors": true,
"order/order": [["custom-properties", "declarations"]],
"order/properties-alphabetical-order": true,
"property-no-unknown": [true, { "ignoreProperties": ["/^lost-/"] }],
"value-keyword-case": "lower"
}
}