From 9a853e346630f3dcfdf0962a98d00192b93215ab Mon Sep 17 00:00:00 2001 From: Pepper Lebeck-Jobe Date: Wed, 4 May 2016 15:46:22 +0100 Subject: [PATCH] Don't trim trailng whitespace from markdown files. - They indicate a line-break but not a new paragraph. --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 02d3e8fe6d05e..718c51f8b7b05 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,3 +14,7 @@ end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true + +# Markdown files sometimes need trailing whitespaces. +[*.md] +trim_trailing_whitespace = false