-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
59 lines (54 loc) · 1.3 KB
/
.markdownlint.yaml
File metadata and controls
59 lines (54 loc) · 1.3 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
54
55
56
57
58
59
---
# markdownlint configuration.
# For more information, see:
# https://github.com/DavidAnson/markdownlint#optionsconfig.
# Enable all rules.
default: true
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md013.md
MD013:
# Number of characters
line_length: 80
# Number of characters for headings
heading_line_length: 80
# Number of characters for code blocks
code_block_line_length: 120
# Number of characters for tables
tables: false
# Strict length checking
strict: false
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md033.md
MD033:
# Allowed elements
allowed_elements: ["div"]
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md040.md
MD040:
# List of languages
allowed_languages:
[
"bash",
"c",
"cpp",
"cmake",
"diff",
"dockerfile",
"glsl",
"json",
"ldif",
"lua",
"markdown",
"mermaid",
"pgsql",
"powershell",
"python",
"rust",
"shell",
"sql",
"text",
"toml",
"typescript",
"wgsl",
"xml",
"yaml",
]
# Require language only
language_only: false