Skip to content

Commit 993cc14

Browse files
chore (.markdownlint.jsonc): add markdown linting
1 parent 7328fc2 commit 993cc14

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.markdownlint.jsonc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md
3+
"default": true,
4+
// Trailing spaces
5+
"MD009": false,
6+
// Line length (default: 80)
7+
"MD013": false,
8+
// Duplicate headings (e.g., nested headings)
9+
"MD024": false,
10+
// Ordered list item prefix
11+
"MD029": {
12+
"style": "ordered"
13+
},
14+
// Fenced code blocks should be surrounded by blank lines
15+
"MD031": false,
16+
// Empahsis as heading (e.g., table of contents)
17+
"MD036": false
18+
}

0 commit comments

Comments
 (0)