Skip to content

Commit 552e0b6

Browse files
committed
lint fix
1 parent c61533d commit 552e0b6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/outbox-prisma-adapter/lib/outbox-prisma-adapter.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ import { type CommonEventDefinition, getMessageType } from '@message-queue-toolk
44
import type { PrismaClient } from '@prisma/client'
55

66
type ModelDelegate = {
7+
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
78
create: (args: any) => Promise<any>
9+
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
810
findMany: (args: any) => Promise<any>
11+
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
912
createMany: (args: any) => Promise<any>
13+
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
1014
updateMany: (args: any) => Promise<any>
1115
}
1216

packages/outbox-prisma-adapter/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,5 @@
5858
"outbox",
5959
"pattern"
6060
],
61-
"files": [
62-
"README.md",
63-
"LICENSE",
64-
"dist/*"
65-
]
61+
"files": ["README.md", "LICENSE", "dist/*"]
6662
}

0 commit comments

Comments
 (0)