-
-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy path.markdownlint-cli2.jsonc
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
// Glob patterns to lint
"globs": [
"**/*.md"
],
// Glob patterns to ignore
"ignores": [
"node_modules",
"vendor/**"
],
// Fix violations automatically (--fix)
"fix": false,
// Rule configuration (all rules enabled by default)
"config": {
// No hard tabs: disable (common for prose/READMEs)
"MD010": false,
// Line length: disable (common for prose/READMEs)
"MD013": false,
// No duplicate headings: disable (common for prose/READMEs)
"MD024": false,
// Inline HTML: disable (common for prose/READMEs)
"MD033": false,
// Emphasis as heading: disable (common for prose/READMEs)
"MD036": false,
// No language for code blocks: disable (common for prose/READMEs)
"MD040": false,
// Blank lines around fences: disable (common for prose/READMEs)
"MD041": false
},
// Custom rules (npm packages or local .js)
"customRules": [],
// Output formatters
"outputFormatters": [
[
"markdownlint-cli2-formatter-default"
]
]
}