init new frontend

This commit is contained in:
Bradley Nelson
2026-06-17 17:06:30 -06:00
parent b8a0018785
commit daa3010458
114 changed files with 32716 additions and 119 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"extends": ["stylelint-config-standard"],
"overrides": [
{
"files": ["**/*.svelte"],
"customSyntax": "postcss-html"
},
{
"files": ["src/lib/styles/base/variables.css"],
"rules": {
"color-no-hex": null,
"color-named": null,
"function-disallowed-list": null
}
}
],
"rules": {
"color-no-hex": true,
"color-named": "never",
"selector-pseudo-class-no-unknown": [true, { "ignorePseudoClasses": ["global"] }],
"property-no-unknown": [true, { "ignoreProperties": ["/^--/"] }],
"function-disallowed-list": ["rgb", "rgba", "hsl", "hsla", "hwb"],
"selector-disallowed-list": ["/\\[data-theme/"],
"selector-class-pattern": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"comment-empty-line-before": null,
"no-descending-specificity": null,
"value-keyword-case": null,
"property-no-vendor-prefix": null
}
}