generated from sachinraja/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.markdownlint.jsonc
36 lines (32 loc) · 931 Bytes
/
.markdownlint.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
{
// Example markdownlint JSON(C) configuration with all properties set to their default value
// Default state for all rules
"default": true,
// Path to configuration file to extend
"extends": null,
// MD013/line-length - Line length
"MD013": {
// Number of characters
"line_length": -1,
// Number of characters for headings
"heading_line_length": 150,
// Number of characters for code blocks
"code_block_line_length": 150,
// Include code blocks
"code_blocks": true,
// Include tables
"tables": false,
// Include headings
"headings": true,
// Include headings
"headers": true,
// Strict length checking
"strict": false,
// Stern length checking
"stern": false
},
// MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
"MD041": false,
// MD033/no-inline-html - Inline HTML
"MD033": false
}