-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
.markdownlint-cli2.jsonc
61 lines (48 loc) · 1.25 KB
/
.markdownlint-cli2.jsonc
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
60
61
/*
* An example .markdownlint-cli2.jsonc file
*/
{
// Disable some built-in rules
"config": {
"no-trailing-spaces": false,
"no-multiple-blanks": false
},
// Include a custom rule package
"customRules": [
"markdownlint-rule-extended-ascii"
],
// Fix any fixable errors
"fix": true,
// Define a custom front matter pattern
"frontMatter": "<head>[^]*<\/head>",
// Ignore files referenced by .gitignore (only valid at root)
"gitignore": true,
// Define glob expressions to use (only valid at root)
"globs": [
"!*bout.md"
],
// Define glob expressions to ignore
"ignores": [
"ignore*.md"
],
// Use a plugin to recognize math
"markdownItPlugins": [
[ "@iktakahiro/markdown-it-katex" ]
],
// Additional paths to resolve module locations from
"modulePaths": [
"./modules"
],
// Disable banner message on stdout (only valid at root)
"noBanner": true,
// Disable inline config comments
"noInlineConfig": true,
// Disable progress on stdout (only valid at root)
"noProgress": true,
// Use a specific formatter (only valid at root)
"outputFormatters": [
[ "markdownlint-cli2-formatter-default" ]
],
// Show found files on stdout (only valid at root)
"showFound": true
}