-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint-cli2.jsonc
51 lines (51 loc) · 1.53 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
{
"outputFormatters": [
[ "markdownlint-cli2-formatter-codequality" ],
[
"markdownlint-cli2-formatter-prettier.js",
{
"colors": {
"fileName": "white",
"separator": "yellow",
"ruleText": "cyan",
"detailsAndContext": "cyan"
}
}
]
],
"config": {
"default": true,
"code-block-style": { "style": "fenced" },
"header-style": { "style": "atx" },
"hr-style": { "style": "---" },
"line-length": {
"code_blocks": false,
"tables": false,
"headings": true,
"heading_line_length": 100,
"line_length": 5000
},
"no-bare-urls": false,
"no-duplicate-heading": { "siblings_only": true },
"no-emphasis-as-heading": false,
"no-inline-html": false,
"no-trailing-punctuation": { "punctuation": ".,;:!。,;:!?" },
"no-trailing-spaces": false
},
"ignores": [
"CONTRIBUTING.md",
".gitlab/**",
"assets/**",
"content/handbook/legal/ai-functionality-terms*",
"content/handbook/legal/education-agreement.md",
"content/handbook/legal/opensource-agreement.md",
"content/handbook/legal/legacy/**",
"content/handbook/legal/reseller-agreement.md",
"content/handbook/legal/reseller-flow-through.md",
"content/handbook/legal/technology-partner-agreement.md",
"content/handbook/legal/testing-agreement*",
"content/handbook/company/culture/all-remote/remote-work-report-2020.md",
"content/handbook/company/culture/all-remote/universal-remote.md",
"layouts/**"
]
}