From 7f4ab8ec67de478c16adeac9bc0273de5e261e38 Mon Sep 17 00:00:00 2001 From: Nate W Date: Fri, 30 Oct 2020 23:26:41 +0000 Subject: [PATCH] Update .editorconfig file (#22) * adding trim_trailing_whitespace = false to .editorconfig for markdown files. Signed-off-by: Nate W --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index f641f42..bbb1628 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,9 +4,13 @@ root = true end_of_line = lf insert_final_newline = true +[*.md] +trim_trailing_whitespace = false + [Makefile] indent_style = tab [*.{html,js,json,md,sass,yaml}] indent_style = space indent_size = 2 +