forked from MyErpSoft/TypeScript-Handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint.js
59 lines (55 loc) · 2.6 KB
/
lint.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var markdownlint = require("markdownlint");
var glob = require("glob");
var options = {
files: glob.sync("**/*.md", { ignore: "node_modules/**/*" }),
config: {
MD001: false, // Header levels should only increment by one level at a time
MD002: false, // First header should be a h1 header
MD003: false, // Header style
MD004: { style: "asterisk" }, // Unordered list style
MD005: true, // Inconsistent indentation for list items at the same level
MD006: true, // Consider starting bulleted lists at the beginning of the line
MD007: { indent: 4 }, // Unordered list indentation
MD009: true, // Trailing spaces
MD010: true, // Hard tabs
MD011: true, // Reversed link syntax
MD012: false, // Multiple consecutive blank lines
MD013: false, // Line length
MD014: false, // Dollar signs used before commands without showing output
MD018: true, // No space after hash on atx style header
MD019: true, // Multiple spaces after hash on atx style header
MD020: false, // No space inside hashes on closed atx style header
MD021: false, // Multiple spaces inside hashes on closed atx style header
MD022: true, // Headers should be surrounded by blank lines
MD023: true, // Headers must start at the beginning of the line
MD024: false, // Multiple headers with the same content
MD025: false, // Multiple top level headers in the same document
MD026: { punctuation: ".,;:!?" }, // Trailing punctuation in header
MD027: true, // Multiple spaces after blockquote symbol
MD028: false, // Blank line inside blockquote
MD029: { style: "ordered" }, // Ordered list item prefix
MD030: true, // Spaces after list markers
MD031: true, // Fenced code blocks should be surrounded by blank lines
MD032: true, // Lists should be surrounded by blank lines
MD033: false, // Inline HTML
MD034: true, // Bare URL used
MD035: false, // Horizontal rule style
MD036: false, // Emphasis used instead of a header
MD037: true, // Spaces inside emphasis markers
MD038: false, // Spaces inside code span elements
MD039: true, // Spaces inside link text
MD040: true, // Fenced code blocks should have a language specified
MD041: false, // First line in file should be a top level header
}
};
var result = markdownlint.sync(options);
console.log(result.toString());
var exitCode = 0;
Object.keys(result).forEach(function (file) {
var fileResults = result[file];
Object.keys(fileResults).forEach(function (rule) {
var ruleResults = fileResults[rule];
exitCode += ruleResults.length;
});
});
process.exit(exitCode);