mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-06-02 00:33:14 +00:00
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:
parent
b99142fd44
commit
3d5071102e
12 changed files with 64 additions and 56 deletions
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue