diff --git a/src/setup/htmlAddInternalMethodLink.ts b/src/setup/htmlAddInternalMethodLink.ts
index d41c3c0..2646d9f 100644
--- a/src/setup/htmlAddInternalMethodLink.ts
+++ b/src/setup/htmlAddInternalMethodLink.ts
@@ -33,6 +33,7 @@ function addInternalMethodIds($: CheerioAPI): void {
$(
"#table-essential-internal-methods tr > td:first-child, " +
"#table-additional-essential-internal-methods-of-function-objects tr > td:first-child",
+ // biome-ignore lint/suspicious/noExplicitAny: cheerio element type
).each((_, td: any) => {
const $td = $(td);
const $var = $td.find("var.field").first();
diff --git a/src/setup/utils/formatHTMLForIngestion.ts b/src/setup/utils/formatHTMLForIngestion.ts
index 9e7f775..eeaf8db 100644
--- a/src/setup/utils/formatHTMLForIngestion.ts
+++ b/src/setup/utils/formatHTMLForIngestion.ts
@@ -154,6 +154,7 @@ function getListItemPrefix(
function listToMarkdown(
$: cheerio.CheerioAPI,
+ // biome-ignore lint/suspicious/noExplicitAny: cheerio element type complexity
elem: any,
depth: number = 0,
): string {