chore(ci): eslint + prettier → biome (#325)

This commit is contained in:
Sam Potts
2026-01-23 11:33:04 +00:00
committed by GitHub
parent 93d8b95b2d
commit bf76dfa593
204 changed files with 1172 additions and 4443 deletions
+3 -10
View File
@@ -6,14 +6,7 @@
*/
import type { CollectionEntry } from 'astro:content';
import type {
BlogPosting,
CollectionPage,
Person,
ProfilePage,
TechArticle,
WithContext,
} from 'schema-dts';
import type { BlogPosting, CollectionPage, Person, ProfilePage, TechArticle, WithContext } from 'schema-dts';
/**
* Create a TechArticle schema for documentation pages.
@@ -92,7 +85,7 @@ export function createBlogPostingSchema(params: {
author.data.socialLinks.website,
].filter(Boolean) as string[],
}),
}),
})
),
publisher: {
'@type': 'Organization',
@@ -214,7 +207,7 @@ export function createProfilePageSchema(params: {
}),
// Include authored articles
...(params.posts.length > 0 && {
publishedWorks: params.posts.map(post => ({
publishedWorks: params.posts.map((post) => ({
'@type': 'BlogPosting',
headline: post.data.title,
url: `${params.siteUrl}blog/${post.id}`,