Skip to content

Commit ecf299b

Browse files
committed
mardownlint: relax rules
Start with [relaxed rules](https://github.com/DavidAnson/markdownlint/blob/2b2dc27f24a16a2afdf66d850a247f7ce02df6c8/style/relaxed.json] and do not require blank lines, as they seem to be only be required for the `kramdown` parser which we do not use.
1 parent 152e3c1 commit ecf299b

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.markdownlint.json

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
2-
"comment": "Relaxed rules",
3-
"default": true,
4-
"line-length": false
2+
"comment": "Relaxed rules + disable blank lines",
3+
"default": true,
4+
"whitespace": false,
5+
"line_length": false,
6+
"ul-start-left": false,
7+
"ul-indent": false,
8+
"no-inline-html": false,
9+
"no-bare-urls": false,
10+
"fenced-code-language": false,
11+
"first-line-h1": false,
12+
"blank_lines": false
513
}
6-

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ bosh 7.0.1
1313
gcloud 403.0.0
1414
cf 8.5.0
1515
actionlint 1.6.22
16+
direnv 2.32.1

0 commit comments

Comments
 (0)