summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorSho Sakuma <me@m1sk9.dev>2026-08-05 19:46:22 +0900
committerSho Sakuma <me@m1sk9.dev>2026-08-05 19:46:22 +0900
commitadf547883cee87a6706f8190bc845a5a94de2768 (patch)
treeccad516f9042ad6e31f2c2fdd24b8f2359bb369f /website
parent639173db48d037ffa5c084d089e5fc7d85d71d80 (diff)
downloadLunaticChat-adf547883cee87a6706f8190bc845a5a94de2768.tar.gz
LunaticChat-adf547883cee87a6706f8190bc845a5a94de2768.tar.bz2
LunaticChat-adf547883cee87a6706f8190bc845a5a94de2768.zip
chore: put the theme's composables under Biome
`includes` stopped at `.vitepress/theme/*.ts`, so everything under `components/` went unchecked — including the release and compatibility logic this branch touches. Widening it to `**/*.ts` takes the check from five files to nine. `.vue` stays out. Biome does not resolve `<script setup>` bindings used from the template, so it reports the components' `t`, `data`, `loading` and formatters as unused and offers to delete them; admitting those files would mean turning off noUnusedVariables and noUnusedImports to buy nothing. Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'website')
-rw-r--r--website/biome.jsonc2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/biome.jsonc b/website/biome.jsonc
index 06ed29f..6d3df9a 100644
--- a/website/biome.jsonc
+++ b/website/biome.jsonc
@@ -6,7 +6,7 @@
".vitepress/config.mts",
"biome.jsonc",
".vitepress/config/**",
- ".vitepress/theme/*.ts"
+ ".vitepress/theme/**/*.ts"
]
},
"formatter": {