mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
biome - Ignore html type errors
This commit is contained in:
@@ -33,6 +33,7 @@ function addInternalMethodIds($: CheerioAPI): void {
|
|||||||
$(
|
$(
|
||||||
"#table-essential-internal-methods tr > td:first-child, " +
|
"#table-essential-internal-methods tr > td:first-child, " +
|
||||||
"#table-additional-essential-internal-methods-of-function-objects 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) => {
|
).each((_, td: any) => {
|
||||||
const $td = $(td);
|
const $td = $(td);
|
||||||
const $var = $td.find("var.field").first();
|
const $var = $td.find("var.field").first();
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ function getListItemPrefix(
|
|||||||
|
|
||||||
function listToMarkdown(
|
function listToMarkdown(
|
||||||
$: cheerio.CheerioAPI,
|
$: cheerio.CheerioAPI,
|
||||||
|
// biome-ignore lint/suspicious/noExplicitAny: cheerio element type complexity
|
||||||
elem: any,
|
elem: any,
|
||||||
depth: number = 0,
|
depth: number = 0,
|
||||||
): string {
|
): string {
|
||||||
|
|||||||
Reference in New Issue
Block a user