feat(*): svelte 5 panel view sharing the gateway ui, obsidian theme, preview and tests

This commit is contained in:
hh
2026-08-29 18:30:31 +02:00
parent a1bf4db905
commit 04400c5076
33 changed files with 3378 additions and 1803 deletions
+67
View File
@@ -0,0 +1,67 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite/biome/core", "ultracite/biome/svelte"],
"javascript": {
"globals": ["Bun"]
},
"files": {
"includes": ["**/*", "!main.js", "!styles.css", "!preview/bundle.js"]
},
"linter": {
"rules": {
"performance": {
"noNamespaceImport": "off"
},
"suspicious": {
"noConsole": "off"
}
}
},
"overrides": [
{
"includes": ["**/*.svelte"],
"linter": {
"rules": {
"correctness": {
"noUndeclaredVariables": "off",
"noUnusedFunctionParameters": "off",
"noUnusedVariables": "off"
},
"style": {
"useFilenamingConvention": "off"
},
"a11y": {
"noSvgWithoutTitle": "warn",
"useButtonType": "warn"
}
}
}
},
{
"includes": ["src/**"],
"linter": {
"rules": {
"correctness": {
"noUnusedInstantiation": "off"
}
}
}
},
{
"includes": ["tests/**", "preview/**"],
"linter": {
"rules": {
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"noMagicNumbers": "off"
},
"suspicious": {
"noEmptyBlockStatements": "off"
}
}
}
}
]
}