chore: initialize public repository
CI / checks (push) Has been cancelled

This commit is contained in:
maddin
2026-03-22 12:57:09 +00:00
commit 6fbd1bb3c2
142 changed files with 19826 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"extends": ["stylelint-config-standard"],
"rules": {
"color-no-hex": true,
"selector-class-pattern": null,
"media-feature-range-notation": null,
"color-hex-length": null,
"custom-property-empty-line-before": null,
"declaration-property-unit-disallowed-list": {
"margin": ["px"],
"margin-top": ["px"],
"margin-right": ["px"],
"margin-bottom": ["px"],
"margin-left": ["px"],
"padding": ["px"],
"padding-top": ["px"],
"padding-right": ["px"],
"padding-bottom": ["px"],
"padding-left": ["px"],
"gap": ["px"],
"row-gap": ["px"],
"column-gap": ["px"]
}
},
"overrides": [
{
"files": ["app/static/css/tokens.css"],
"rules": {
"color-no-hex": null,
"declaration-property-unit-disallowed-list": null
}
}
]
}