From fa910c0145c92b87da5b4812ca0c2e8e5f85fe37 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 13 Feb 2023 11:13:55 +0200 Subject: [PATCH] .editorconfig: add markdown, tsv --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.editorconfig b/.editorconfig index 71af3e61..97561901 100644 --- a/.editorconfig +++ b/.editorconfig @@ -25,6 +25,18 @@ end_of_line = crlf [*.{bash,sh}] end_of_line = lf +# Markdown apparently allows linebreaks by two trailing spaces, while I +# never seem to do that, maybe I should accept it +[*.{markdown,md}] +trim_trailing_whitespace = false + +# TAB Separated Values +[*.{tsv,tab}] +indent_style = tab +indent_size = tab +# empty last columns/fields +trim_trailing_whitespace = false + # Python https://peps.python.org/pep-0008/#indentation [*.py] indent_style = space