Skip to content

Commit e81bc57

Browse files
committed
fix: switch to bun
1 parent 4c7e919 commit e81bc57

File tree

4 files changed

+2821
-14756
lines changed

4 files changed

+2821
-14756
lines changed

biome.json

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3-
"organizeImports": {
4-
"enabled": true
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"files": {
4+
"includes": [
5+
"**",
6+
"!**/.astro",
7+
"!**/dist",
8+
"!**/node_modules",
9+
"!**/*.css"
10+
]
511
},
12+
"assist": { "actions": { "source": { "organizeImports": "on" } } },
613
"linter": {
714
"enabled": true,
815
"rules": {
@@ -29,5 +36,22 @@
2936
"parser": {
3037
"allowComments": true
3138
}
32-
}
39+
},
40+
"overrides": [
41+
{
42+
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
43+
"linter": {
44+
"rules": {
45+
"style": {
46+
"useConst": "off",
47+
"useImportType": "off"
48+
},
49+
"correctness": {
50+
"noUnusedVariables": "off",
51+
"noUnusedImports": "off"
52+
}
53+
}
54+
}
55+
}
56+
]
3357
}

0 commit comments

Comments
 (0)