-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
53 lines (53 loc) · 1.11 KB
/
Copy path.markdownlint-cli2.jsonc
File metadata and controls
53 lines (53 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"globs": [
"**/*.md",
"!Librdkafka/Changelog.md",
"!Librdkafka/Errors.md",
"!Librdkafka/Statistics.md",
"!Librdkafka/Configuration.md",
"!Development/Karafka-Integration-Tests-Catalog.md",
"!Infrastructure/Instrumentation-Events.md",
"!WaterDrop/Instrumentation-Events.md",
"!Changelog/*.md",
"!Pro/License-Comm.md",
"!.gh/**",
"!.gh-templates/**",
"!node_modules/**",
"!.lint/**",
],
"customRules": [
"mkdocs-material-linter",
"./.rules/no-emdash.js",
"./.rules/no-horizontal-rule.js",
"./.rules/admonition-title-required.js"
],
"config": {
"default": true,
"MD025": true,
"MD029": {
"style": "one_or_ordered"
},
"MD033": false,
"MD036": false,
"MD041": false,
"MD046": false,
"MD045": false,
"MD051": false,
"MD059": false,
"MD004": {
"style": "dash"
},
"MD007": {
"indent": 4
},
"MD013": {
"line_length": 100000,
"code_blocks": false,
"tables": false
},
"MD024": {
"siblings_only": true
},
"material-meta-tags": false
}
}