Skip to content

Commit fb48282

Browse files
committed
Relax markdownlint rules for recruiter-friendly CI
1 parent 7e6d082 commit fb48282

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

.markdownlint.jsonc

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
21
{
32
"default": true,
4-
"MD013": false, // line length rule — too noisy for README files
5-
"MD033": false, // inline HTML allowed (for badges/tables)
6-
"MD041": false, // first line must be heading — not enforced
7-
"MD036": false, // emphasis style consistency not required
8-
"MD034": false, // allow bare URLs (common in docs)
9-
"MD007": { "indent": 2 }, // standard list indentation
10-
"MD022": { "lines_above": 1, "lines_below": 1 }, // clean spacing around headings
11-
"MD024": { "allow_different_nesting": true } // allow repeated headings if in different sections
3+
"MD013": false, // ignore line length
4+
"MD033": false, // allow inline HTML (badges/tables)
5+
"MD041": false, // first line not necessarily a heading
6+
"MD046": false, // allow fenced code blocks (```)
7+
"MD040": false, // language not required in code fences
8+
"MD022": false, // ignore blank line around headings
9+
"MD031": false, // ignore blank lines around fences
10+
"MD036": false, // emphasis consistency relaxed
11+
"MD034": false, // allow bare URLs
12+
"MD007": { "indent": 2 },
13+
"MD024": { "allow_different_nesting": true }
1214
}

0 commit comments

Comments
 (0)