Skip to content

Commit

Permalink
biome
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiboSoftwareDev committed Sep 13, 2024
1 parent 1cb905d commit b7f5d0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pcb/pcb_fabrication_note_path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const pcb_fabrication_note_path = z
layer: visible_layer,
route: z.array(point),
stroke_width: length,
color: z.string().optional()
color: z.string().optional(),
})
.describe(
"Defines a fabrication path on the PCB for fabricators or assemblers",
Expand Down
2 changes: 1 addition & 1 deletion src/pcb/pcb_fabrication_note_text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const pcb_fabrication_note_text = z
anchor_alignment: z
.enum(["center", "top_left", "top_right", "bottom_left", "bottom_right"])
.default("center"),
color: z.string().optional()
color: z.string().optional(),
})
.describe(
"Defines a fabrication note in text on the PCB, useful for leaving notes for assemblers or fabricators",
Expand Down

0 comments on commit b7f5d0e

Please sign in to comment.