mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
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:
parent
191226f070
commit
1e71f6f44e
140 changed files with 1087 additions and 10428 deletions
47
lib/md014.mjs
Normal file
47
lib/md014.mjs
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
// @ts-check
|
||||
|
||||
import { addErrorContext } from "../helpers/helpers.cjs";
|
||||
import { filterByTypesCached } from "./cache.mjs";
|
||||
|
||||
const dollarCommandRe = /^(\s*)(\$\s+)/;
|
||||
|
||||
/** @type {import("./markdownlint.mjs").Rule} */
|
||||
export default {
|
||||
"names": [ "MD014", "commands-show-output" ],
|
||||
"description": "Dollar signs used before commands without showing output",
|
||||
"tags": [ "code" ],
|
||||
"parser": "micromark",
|
||||
"function": function MD014(params, onError) {
|
||||
for (const codeBlock of filterByTypesCached([ "codeFenced", "codeIndented" ])) {
|
||||
const codeFlowValues = codeBlock.children.filter((child) => child.type === "codeFlowValue");
|
||||
const dollarMatches = codeFlowValues
|
||||
.map((codeFlowValue) => ({
|
||||
"result": codeFlowValue.text.match(dollarCommandRe),
|
||||
"startColumn": codeFlowValue.startColumn,
|
||||
"startLine": codeFlowValue.startLine,
|
||||
"text": codeFlowValue.text
|
||||
}))
|
||||
.filter((dollarMatch) => dollarMatch.result);
|
||||
if (dollarMatches.length === codeFlowValues.length) {
|
||||
for (const dollarMatch of dollarMatches) {
|
||||
// @ts-ignore
|
||||
const column = dollarMatch.startColumn + dollarMatch.result[1].length;
|
||||
// @ts-ignore
|
||||
const length = dollarMatch.result[2].length;
|
||||
addErrorContext(
|
||||
onError,
|
||||
dollarMatch.startLine,
|
||||
dollarMatch.text,
|
||||
undefined,
|
||||
undefined,
|
||||
[ column, length ],
|
||||
{
|
||||
"editColumn": column,
|
||||
"deleteCount": length
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue