Skip to content

Commit

Permalink
refactor(validation): fix biome issues
Browse files Browse the repository at this point in the history
  • Loading branch information
duongdev committed Jul 8, 2024
1 parent 424109d commit ed10914
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions packages/validation/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.0/schema.json",
"extends": ["../../biome.json"],
"files": {
"include": ["**/*.ts", "**/*.tsx"],
"ignore": ["src/prisma/*"]
}
}
2 changes: 1 addition & 1 deletion packages/validation/src/auth.zod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { object, string } from "zod";
import { object, string } from 'zod'

export const zLogin = object({
email: string().email(),
Expand Down

0 comments on commit ed10914

Please sign in to comment.