Skip to content

Commit ce3cd2d

Browse files
authored
feat: add --no-engine and --no-hint to prisma autocompletes (#2345)
1 parent ae425a1 commit ce3cd2d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/prisma.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,23 @@ const completionSpec: Fig.Spec = {
6868
name: "--data-proxy",
6969
description: "Enable the Data Proxy in the Prisma Client",
7070
},
71+
{
72+
name: "--no-hints",
73+
description:
74+
"Hides the hint messages but still outputs errors and warnings",
75+
},
76+
{
77+
name: "--no-engine",
78+
description: "Generate a client for use with Accelerate only",
79+
},
7180
{
7281
name: "--watch",
7382
description: "Watch the Prisma schema and rerun after a change",
7483
},
84+
{
85+
name: "--allow-no-models",
86+
description: "Allow generating a client without models",
87+
},
7588
],
7689
},
7790
{

0 commit comments

Comments
 (0)