forked from OpenINF/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint-cli2.jsonc
44 lines (36 loc) · 1.02 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
{
// Include a custom rule package
"customRules": [],
// Fix any fixable errors
"fix": true,
// Define a custom front matter pattern
"frontMatter": "(^---\\s*$[^]*?^---\\s*$)(\r\n|\r|\n|$)",
// Define glob expressions to use (only valid at root)
"globs": ["**/**.md"],
// Define glob expressions to ignore
"ignores": [
".pnpm-store/**/*",
"LICENSE",
"vendor/**/*",
"lib/**/*",
"doc/.jekyll-cache/**/*",
"doc/_site/**/*"
],
"markdownItPlugins": [
// Use a plugin to recognize math
["@iktakahiro/markdown-it-katex"],
["markdown-it-task-lists"],
["markdown-it-footnote"],
["markdown-it-sup"],
["markdown-it-sub"],
["markdown-it-abbr"],
["markdown-it-anchor"],
["markdown-it-toc-done-right"]
],
// Disable inline config comments
"noInlineConfig": false,
// Disable progress on stdout (only valid at root)
"noProgress": false,
// Use a specific formatter (only valid at root)
"outputFormatters": [["markdownlint-cli2-formatter-default"]]
}