Skip to content

Commit

Permalink
Remove line length from Markdown files (#36)
Browse files Browse the repository at this point in the history
We do not honor the line length for Markdown files that we typically use
for code files in other repos. Some editors can show a marker at said
line length, but in this case it is distracting. Although it's not a
part of the EditorConfig spec, the `max_line_length` option is honored
by some editors such as Vim and can be used to remove the marker. This
commit sets that EditorConfig setting accordingly.
  • Loading branch information
mcmire authored Aug 15, 2023
1 parent b485485 commit 301ac69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[*.md]
max_line_length = unset

0 comments on commit 301ac69

Please sign in to comment.