feat: add global theme

This commit is contained in:
2026-01-30 23:22:54 +08:00
parent 21db1c3895
commit bad60a8ee5
6 changed files with 126 additions and 6 deletions

View File

@@ -24,6 +24,19 @@ export default typescriptEslint.config(
"vue/singleline-html-element-content-newline": "off",
"vue/max-attributes-per-line": "off",
"vue/multi-word-component-names": "off",
"vue/html-self-closing": [
"warn",
{
html: {
void: "always",
normal: "always",
component: "always",
},
svg: "always",
math: "always",
},
],
"@typescript-eslint/no-unused-vars": "warn",
},
},
);