mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
62 lines
2 KiB
JavaScript
62 lines
2 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addError, ellipsify, linkReferenceDefinitionRe } =
|
|
require("../helpers");
|
|
const { getReferenceLinkImageData } = require("./cache");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD053", "link-image-reference-definitions" ],
|
|
"description": "Link and image reference definitions should be needed",
|
|
"tags": [ "images", "links" ],
|
|
"parser": "none",
|
|
"function": function MD053(params, onError) {
|
|
const ignored = new Set(params.config.ignored_definitions || [ "//" ]);
|
|
const lines = params.lines;
|
|
const { references, shortcuts, definitions, duplicateDefinitions } =
|
|
getReferenceLinkImageData();
|
|
const singleLineDefinition = (line) => (
|
|
line.replace(linkReferenceDefinitionRe, "").trim().length > 0
|
|
);
|
|
const deleteFixInfo = {
|
|
"deleteCount": -1
|
|
};
|
|
// Look for unused link references (unreferenced by any link/image)
|
|
for (const definition of definitions.entries()) {
|
|
const [ label, [ lineIndex ] ] = definition;
|
|
if (
|
|
!ignored.has(label) &&
|
|
!references.has(label) &&
|
|
!shortcuts.has(label)
|
|
) {
|
|
const line = lines[lineIndex];
|
|
addError(
|
|
onError,
|
|
lineIndex + 1,
|
|
`Unused link or image reference definition: "${label}"`,
|
|
ellipsify(line),
|
|
[ 1, line.length ],
|
|
singleLineDefinition(line) ? deleteFixInfo : 0
|
|
);
|
|
}
|
|
}
|
|
// Look for duplicate link references (defined more than once)
|
|
for (const duplicateDefinition of duplicateDefinitions) {
|
|
const [ label, lineIndex ] = duplicateDefinition;
|
|
if (!ignored.has(label)) {
|
|
const line = lines[lineIndex];
|
|
addError(
|
|
onError,
|
|
lineIndex + 1,
|
|
`Duplicate link or image reference definition: "${label}"`,
|
|
ellipsify(line),
|
|
[ 1, line.length ],
|
|
singleLineDefinition(line) ? deleteFixInfo : 0
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|