.editorconfig: add markdown, tsv

This commit is contained in:
Aminda Suomalainen 2023-02-13 11:13:55 +02:00
parent 3f0aa79a32
commit fa910c0145
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
1 changed files with 12 additions and 0 deletions

View File

@ -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