.editorconfig: line lengths don't matter for csv or tsv

This commit is contained in:
Aminda Suomalainen 2023-04-04 12:51:57 +03:00
parent a00dd239cf
commit 1feed4ea3f
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -36,6 +36,9 @@ trim_trailing_whitespace = false
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
[*.csv]
max_line_length =
# Markdown apparently allows linebreaks by two trailing spaces, while I # Markdown apparently allows linebreaks by two trailing spaces, while I
# never seem to do that, maybe I should accept it # never seem to do that, maybe I should accept it
[{LICENSE,*.{markdown,md}}] [{LICENSE,*.{markdown,md}}]
@ -70,6 +73,7 @@ indent_style = tab
indent_size = tab indent_size = tab
# empty last columns/fields # empty last columns/fields
trim_trailing_whitespace = false trim_trailing_whitespace = false
max_line_length =
# RFC 678 # RFC 678
#[*.txt] #[*.txt]