style: format code with Prettier

This commit fixes the style issues introduced in b99142f according to the output
from Prettier.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-05-25 10:01:48 +00:00 committed by GitHub
parent b99142fd44
commit 3d5071102e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 64 additions and 56 deletions

View file

@ -1,5 +1,4 @@
import { z, defineCollection } from 'astro:content';
import { z, defineCollection } from "astro:content";
const postsCollection = defineCollection({
type: "content",
@ -25,16 +24,16 @@ const projectsCollection = defineCollection({
const certificatesCollection = defineCollection({
type: "data",
schema: z.object({
title: z.string(),
title: z.string(),
provider: z.string(),
achieved: z.date(),
skills: z.array(z.string()).optional(),
link: z.string().optional(),
}),
})
});
export const collections = {
"posts": postsCollection,
"projects": projectsCollection,
"certificates": certificatesCollection,
posts: postsCollection,
projects: projectsCollection,
certificates: certificatesCollection,
};