2023-02-12 14:53:52 +01:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
# Future: https://github.com/editorconfig/editorconfig/issues/89
|
|
|
|
# Handled by git when not set
|
2023-02-26 18:01:13 +01:00
|
|
|
end_of_line = lf
|
2023-02-12 14:53:52 +01:00
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
charset = utf-8
|
|
|
|
# Accessibility reasons. Vim: :%retab! (note also :set ts=4)
|
2023-02-26 18:01:13 +01:00
|
|
|
indent_style = space
|
2023-02-12 14:53:52 +01:00
|
|
|
#tab_width =
|
2023-04-04 11:50:24 +02:00
|
|
|
max_line_length = 78
|
2023-02-13 10:16:26 +01:00
|
|
|
|
|
|
|
[*.{markdown,md}]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
|
|
|
[*.{tsv,tab}]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = tab
|
|
|
|
trim_trailing_whitespace = false
|
2023-05-18 16:52:31 +02:00
|
|
|
max_line_length = off
|