-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
37 lines (27 loc) · 745 Bytes
/
.markdownlint.jsonc
File metadata and controls
37 lines (27 loc) · 745 Bytes
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
{
// I can set heading levels at my discretion!
"MD001": false,
// Style of unordered lists.
"MD007": {
"indent": 2,
"start_indented": false
},
// no-trailing-spaces: true
"MD009": false,
// Line length. Who cares.
"MD013": false,
// Multiple headings with the same content. That's fine.
"MD024": false,
// Wrong detection of multiple quotes.
"MD028": false,
// Sometimes it needed to place fences in list and so on...
"MD031": false,
// Because I love inlining a little HTML in my markdown.
"MD033": false,
// Bare links are OK
"MD034": false,
// I want to add a picture at the top of README...
"MD041": false,
// MDLint doesn't really understand GitHub markdown
"MD053": false
}