Remove outdated type annotations and lint suppressions.

This commit is contained in:
David Anson 2024-06-21 21:03:30 -07:00
parent d9c5d24e20
commit 1513e3803b
25 changed files with 208 additions and 322 deletions

View file

@ -19,12 +19,10 @@ module.exports = {
"parser": "micromark",
"function": function MD046(params, onError) {
let expectedStyle = String(params.config.style || "consistent");
// eslint-disable-next-line jsdoc/valid-types
/** @type import("../helpers/micromark.cjs").Token[] */
const micromarkTokens =
// @ts-ignore
params.parsers.micromark.tokens;
const codeBlocksAndFences = filterByTypes(micromarkTokens, [ "codeFenced", "codeIndented" ]);
const codeBlocksAndFences = filterByTypes(
params.parsers.micromark.tokens,
[ "codeFenced", "codeIndented" ]
);
for (const token of codeBlocksAndFences) {
const { startLine, type } = token;
if (expectedStyle === "consistent") {