-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
.markdownlint.jsonc
36 lines (25 loc) · 889 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,
// MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
"MD001": false,
// MD013/line-length - Line length
"MD013": false,
"MD024": 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,
// MD045/no-bare-urls - Images should have alternate text (alt text)
"MD045": false,
// MD010/no-hard-tabs - Hard tabs
"MD010": false,
// MD029/ol-prefix - Ordered list item prefix
"MD029": false,
// MD007/ul-indent - Unordered list indentation
"MD007": false,
"MD028": false
}