Skip to content

Commit bab9a86

Browse files
authored
build: Allow arbitrary line length in markdown documents (#1250)
**What problem does this PR solve?**: Maintaining a maximum line length is not necessary. We view Markdown documents using clients that can (and do) automatically wrap text to the width of the display. Moreover, when we render Markdown to HTML using Hugo, the most important use case for most of Markdown documentation, the line wrapping is discarded. We already disabled line length for code blocks. This PR just extends it to text. **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent 7c529b5 commit bab9a86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.markdownlint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"heading-style": { "style": "atx" },
33
"ul-style": { "style": "dash" },
4-
"line-length": { "line_length": 120, "code_blocks": false },
4+
"line-length": false,
55
"hr-style": { "style": "---" }
66
}

0 commit comments

Comments
 (0)