Skip to content

Commit ccd4f10

Browse files
authored
Normalize paths to fix false positives on Windows [HC-1504] (#339)
Normalize paths to fix false positives on Windows
1 parent 011ecd5 commit ccd4f10

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_linter/markdownlint/rules/hc002.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ var glob = require("glob");
99
const path = require('path');
1010
// TODO: https://stackoverflow.com/a/2186565
1111
const filePaths = glob.sync('content/**/*');
12+
let normPaths = [];
13+
for (var filePath of filePaths) {
14+
normPaths.push(path.normalize(filePath));
15+
}
1216

1317
module.exports = {
1418
"names": [ "HC002", "no-missing-images" ],
@@ -19,7 +23,7 @@ module.exports = {
1923
var dir = path.dirname(params.name);
2024
var imgPath = path.join(dir, token.attrs[0][1]);
2125

22-
if (!filePaths.includes(imgPath)) {
26+
if (!normPaths.includes(path.normalize(imgPath))) {
2327
addError(onError, token.lineNumber, null, imgPath);
2428
}
2529
});

0 commit comments

Comments
 (0)