Convert markdownlint library to an ECMAScript module, replace markdownlint-micromark with micromark, stop publishing (large) markdownlint-browser.js, see https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c for guidance.

This commit is contained in:
David Anson 2024-11-28 20:36:44 -08:00
parent 191226f070
commit 1e71f6f44e
140 changed files with 1087 additions and 10428 deletions

View file

@ -0,0 +1,20 @@
// @ts-check
"use strict";
/** @type {import("../../lib/markdownlint.mjs").Rule} */
module.exports = {
"names": [ "every-n-lines" ],
"description": "Rule that reports an error every N lines",
"tags": [ "test" ],
"parser": "none",
"function": (params, onError) => {
const n = params.config.n || 2;
for (let lineNumber = n; lineNumber <= params.lines.length; lineNumber += n) {
onError({
"lineNumber": lineNumber,
"detail": "Line number " + lineNumber
});
}
}
};