From 40248b13fb57d872a4b821fc9bdfe876a8ca4799 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 13 Feb 2023 11:16:26 +0200 Subject: [PATCH] .editorconfig: allow trailing space for markdown, tsv (which also explicitly uses tab) --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.editorconfig b/.editorconfig index be16638..f7aa611 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,3 +11,11 @@ charset = utf-8 indent_style = tab indent_size = tab #tab_width = + +[*.{markdown,md}] +trim_trailing_whitespace = false + +[*.{tsv,tab}] +indent_style = tab +indent_size = tab +trim_trailing_whitespace = false