mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-07-09 14:27:46 +00:00
style: format imports and ensure consistent newlines
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import {z} from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
export const AuthorSchema = z.object({
|
export const AuthorSchema = z.object({
|
||||||
first_name: z.string(),
|
first_name: z.string(),
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import {z} from 'zod';
|
import { z } from 'zod';
|
||||||
import {AuthorSchema, SkillSchema, SocialSchema} from '.';
|
import { AuthorSchema, SkillSchema, SocialSchema } from '.';
|
||||||
|
|
||||||
export const ReadmeSchema = z.object({
|
export const ReadmeSchema = z.object({
|
||||||
author: AuthorSchema,
|
author: AuthorSchema,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {z} from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
export const SkillSchema = z.object({
|
export const SkillSchema = z.object({
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {z} from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
export const SocialSchema = z.object({
|
export const SocialSchema = z.object({
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
|
|||||||
Reference in New Issue
Block a user