Skip to content

Commit 0001eec

Browse files
chore: update deps
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
1 parent 06f05a0 commit 0001eec

File tree

4 files changed

+176
-324
lines changed

4 files changed

+176
-324
lines changed

biome.json

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
{
2-
"formatter": {
2+
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
3+
"assist": {
34
"enabled": true,
5+
"actions": {
6+
"recommended": true,
7+
"source": { "recommended": true, "organizeImports": "off" }
8+
}
9+
},
10+
"formatter": {
411
"indentStyle": "tab",
12+
"indentWidth": 2,
513
"lineWidth": 110
614
},
7-
"files": {
8-
"ignore": ["**/node_modules/*", "**/dist/*", "src/md5.ts", "**/.turbo/*", "lib/*"]
15+
"vcs": {
16+
"enabled": true,
17+
"useIgnoreFile": true,
18+
"clientKind": "git",
19+
"defaultBranch": "main"
920
},
1021
"linter": {
11-
"enabled": true,
1222
"rules": {
1323
"style": {
1424
"useBlockStatements": "off",
@@ -22,5 +32,21 @@
2232
"noRedeclare": "off"
2333
}
2434
}
25-
}
35+
},
36+
"files": {
37+
"includes": ["**", "!**/lib/*", "!src/md5.ts"]
38+
},
39+
"overrides": [
40+
{
41+
"includes": ["**/*.astro"],
42+
"linter": {
43+
"rules": {
44+
"correctness": {
45+
"noUnusedImports": "off",
46+
"noUnusedVariables": "off"
47+
}
48+
}
49+
}
50+
}
51+
]
2652
}

0 commit comments

Comments
 (0)