Skip to content

Commit 7be7e17

Browse files
committed
chore: add markdownlint config to disable overly strict rules
- Disable MD013 (line length) - not useful for documentation - Disable MD033 (inline HTML) - sometimes needed - Disable MD036 (emphasis as heading) - false positives - Disable MD040 (fenced code language) - not always applicable - Disable MD060 (table column style) - too pedantic about spacing
1 parent 02d38dc commit 7be7e17

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.markdownlint.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"default": true,
3+
"MD013": false,
4+
"MD033": false,
5+
"MD036": false,
6+
"MD040": false,
7+
"MD060": false,
8+
"MD032": {
9+
"blank_lines_around": "lists"
10+
}
11+
}

0 commit comments

Comments
 (0)