mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
89 lines
3 KiB
JavaScript
89 lines
3 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorDetailIf } = require("../helpers");
|
|
const { filterByTypes, getTokenParentOfType } = require("../helpers/micromark.cjs");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("markdownlint-micromark").TokenType[] */
|
|
const unorderedListTypes =
|
|
[ "blockQuotePrefix", "listItemPrefix", "listUnordered" ];
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("markdownlint-micromark").TokenType[] */
|
|
const unorderedParentTypes =
|
|
[ "blockQuote", "listOrdered", "listUnordered" ];
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD007", "ul-indent" ],
|
|
"description": "Unordered list indentation",
|
|
"tags": [ "bullet", "ul", "indentation" ],
|
|
"parser": "micromark",
|
|
"function": function MD007(params, onError) {
|
|
const indent = Number(params.config.indent || 2);
|
|
const startIndented = !!params.config.start_indented;
|
|
const startIndent = Number(params.config.start_indent || indent);
|
|
const unorderedListNesting = new Map();
|
|
let lastBlockQuotePrefix = null;
|
|
const tokens = filterByTypes(
|
|
params.parsers.micromark.tokens,
|
|
unorderedListTypes
|
|
);
|
|
for (const token of tokens) {
|
|
const { endColumn, parent, startColumn, startLine, type } = token;
|
|
if (type === "blockQuotePrefix") {
|
|
lastBlockQuotePrefix = token;
|
|
} else if (type === "listUnordered") {
|
|
let nesting = 0;
|
|
/** @type {import("../helpers/micromark.cjs").Token | null} */
|
|
let current = token;
|
|
while (
|
|
(current = getTokenParentOfType(current, unorderedParentTypes))
|
|
) {
|
|
if (current.type === "listUnordered") {
|
|
nesting++;
|
|
// eslint-disable-next-line no-continue
|
|
continue;
|
|
} else if (current.type === "listOrdered") {
|
|
nesting = -1;
|
|
}
|
|
break;
|
|
}
|
|
if (nesting >= 0) {
|
|
unorderedListNesting.set(token, nesting);
|
|
}
|
|
} else {
|
|
// listItemPrefix
|
|
const nesting = unorderedListNesting.get(parent);
|
|
if (nesting !== undefined) {
|
|
// listItemPrefix for listUnordered
|
|
const expectedIndent =
|
|
(startIndented ? startIndent : 0) + (nesting * indent);
|
|
const blockQuoteAdjustment =
|
|
(lastBlockQuotePrefix?.endLine === startLine) ?
|
|
(lastBlockQuotePrefix.endColumn - 1) :
|
|
0;
|
|
const actualIndent = startColumn - 1 - blockQuoteAdjustment;
|
|
const range = [ 1, endColumn - 1 ];
|
|
const fixInfo = {
|
|
"editColumn": startColumn - actualIndent,
|
|
"deleteCount": Math.max(actualIndent - expectedIndent, 0),
|
|
"insertText": "".padEnd(Math.max(expectedIndent - actualIndent, 0))
|
|
};
|
|
addErrorDetailIf(
|
|
onError,
|
|
startLine,
|
|
expectedIndent,
|
|
actualIndent,
|
|
undefined,
|
|
undefined,
|
|
range,
|
|
fixInfo
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|