Skip to content

Commit 2de8f97

Browse files
authored
Merge pull request #107 from cerebruminc/lucianbuzzo/query-batching
feat: improve performance (esp. n+1) by batching requests
2 parents 2999b12 + 0ff5d67 commit 2de8f97

File tree

7 files changed

+7496
-7395
lines changed

7 files changed

+7496
-7395
lines changed

biome.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
33
"files": {
4-
"ignore": ["dist", "coverage"]
4+
"ignore": ["dist", "coverage", "package.json"]
55
},
66
"organizeImports": {
77
"enabled": true
88
},
99
"linter": {
1010
"enabled": true,
1111
"rules": {
12-
"recommended": true
12+
"recommended": true,
13+
"suspicious": {
14+
"noExplicitAny": "off"
15+
}
1316
}
1417
}
1518
}

0 commit comments

Comments
 (0)