From 6c1a2ac94fef0dbfa086b902fd329a0065142741 Mon Sep 17 00:00:00 2001 From: Sven Greb Date: Fri, 18 Sep 2020 14:39:44 +0200 Subject: [PATCH] Maximum line length for Markdown EditorConfig (#42) Since Markdown is written as flowing text the globally defined maximum line length of EditorConfig has been disabled to prevent false-positive errors. Closes GH-41 --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index 87eb22f..48c23be 100644 --- a/.editorconfig +++ b/.editorconfig @@ -18,4 +18,5 @@ trim_trailing_whitespace = true # +-----------+ # +--- Markdown ---+ [*.{md}] +max_line_length = off trim_trailing_whitespace = false