-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
22 lines (22 loc) · 670 Bytes
/
.markdownlint.jsonc
File metadata and controls
22 lines (22 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
// Linter rules doc:
// - https://github.com/DavidAnson/markdownlint
"default": true,
"MD004": false, // Unordered list style
"MD007": {
"indent": 2 // Unordered list indentation
},
"MD009": false, // Trailing spaces
"MD013": {
"line_length": 120, // Line length
"tables": false // Ignore tables
},
"MD026": {
"punctuation": ".,;:!。,;:" // List of not allowed
},
"MD029": false, // Ordered list item prefix
"MD033": false, // Allow inline HTML
"MD036": false, // Emphasis used instead of a heading
"MD041": false, // First line in a file should be a top-level heading
"blank_lines": false // Error on blank lines
}