-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
36 lines (36 loc) · 1.37 KB
/
.markdownlint.jsonc
File metadata and controls
36 lines (36 loc) · 1.37 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
// .markdownlint.jsonc
{
// MD007: Unordered list indentation (list-marker-space)
// Disable this as Prettier handles list formatting and may use 2 spaces.
"MD007": false,
"list-marker-space": false,
// MD013: Line length
// Disable this for prose as Prettier's "proseWrap: always" handles wrapping,
// and strict line limits can make documentation hard to read.
"MD013": false,
"MD040": false,
"line-length": false,
"MD031": false,
"MD032": false,
// MD026: Trailing punctuation in heading
// This is a good rule to enforce for clean headings. We will fix these.
"MD026": true,
// MD034: Bare URL used
// This is a good rule to enforce for readability. We will fix these.
"MD034": true,
// MD041: First line in a file should be a top-level heading
// This is a good practice for READMEs. We will fix this.
"MD041": true,
// MD024: Multiple headings with the same content
// This indicates a structural issue. We will fix this.
"MD024": true,
// MD038: Spaces inside code span elements
// This is a formatting issue. We will fix this.
"MD038": true,
// MD047: Files should end with a single newline character
// Good practice, Prettier should handle this.
"MD047": true,
// MD012: Multiple blank lines
// Good practice, Prettier should help with this.
"MD012": true
}