summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSho Sakuma <me@m1sk9.dev>2026-08-05 20:09:16 +0900
committerSho Sakuma <me@m1sk9.dev>2026-08-05 20:09:16 +0900
commit1a7b6ec2586db0663f09924721db71f3f2e1eadc (patch)
tree1f42f272f4d0f63260fac5441e41d06638775c55
parentadf547883cee87a6706f8190bc845a5a94de2768 (diff)
downloadLunaticChat-1a7b6ec2586db0663f09924721db71f3f2e1eadc.tar.gz
LunaticChat-1a7b6ec2586db0663f09924721db71f3f2e1eadc.tar.bz2
LunaticChat-1a7b6ec2586db0663f09924721db71f3f2e1eadc.zip
chore: migrate the linter config off the deprecated recommended field
Biome 2.5.7 deprecates `linter.rules.recommended` in favour of `preset` and will drop it in the next major, so the config emitted a deprecation notice on every run. Renaming it now keeps `bun run lint` and `format:check` clean and spares a forced edit at the next upgrade; the rule set it selects is unchanged. Co-Authored-By: Claude <noreply@anthropic.com>
-rw-r--r--website/biome.jsonc2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/biome.jsonc b/website/biome.jsonc
index 6d3df9a..8e9a812 100644
--- a/website/biome.jsonc
+++ b/website/biome.jsonc
@@ -34,7 +34,7 @@
"linter": {
"enabled": true,
"rules": {
- "recommended": true,
+ "preset": "recommended",
"suspicious": {
"noShadowRestrictedNames": "off"
},