style: format imports and ensure consistent newlines

This commit is contained in:
Lucàs
2025-07-14 13:19:02 +02:00
parent f0bc58cdd6
commit a672169e92
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import {z} from 'zod';
import { z } from 'zod';
export const AuthorSchema = z.object({
first_name: z.string(),
+2 -2
View File
@@ -1,5 +1,5 @@
import {z} from 'zod';
import {AuthorSchema, SkillSchema, SocialSchema} from '.';
import { z } from 'zod';
import { AuthorSchema, SkillSchema, SocialSchema } from '.';
export const ReadmeSchema = z.object({
author: AuthorSchema,
+1 -1
View File
@@ -1,4 +1,4 @@
import {z} from 'zod';
import { z } from 'zod';
export const SkillSchema = z.object({
name: z.string(),
+1 -1
View File
@@ -1,4 +1,4 @@
import {z} from 'zod';
import { z } from 'zod';
export const SocialSchema = z.object({
name: z.string(),