Checkpoint

This commit is contained in:
2026-03-09 11:33:07 +01:00
commit aed73e824e
38 changed files with 8473 additions and 0 deletions

24
.stylelintrc.json Normal file
View File

@@ -0,0 +1,24 @@
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"order/properties-alphabetical-order": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-order": [
"width",
"height"
],
"max-nesting-depth": 3
}
}