Skip to content

Commit

Permalink
🧼 format & lint
Browse files Browse the repository at this point in the history
  • Loading branch information
m1212e committed Nov 18, 2024
1 parent f7b1405 commit 0e6fa5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const configSchema = Type.Object(
*/
exportedTypePrefix: Type.String({ default: "" }),
},
{ additionalProperties: false }
{ additionalProperties: false },
);

// biome-ignore lint/suspicious/noExplicitAny: we want to set the default value
Expand Down
2 changes: 1 addition & 1 deletion src/generators/primitiveField.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const PrimitiveFields = [
export type PrimitivePrismaFieldType = (typeof PrimitiveFields)[number];

export function isPrimitivePrismaFieldType(
str: string
str: string,
): str is PrimitivePrismaFieldType {
// biome-ignore lint/suspicious/noExplicitAny: we want to check if the string is a valid primitive field
return PrimitiveFields.includes(str as any);
Expand Down

0 comments on commit 0e6fa5d

Please sign in to comment.