Files
libgit2/.editorconfig
Edward Thomson 634154ec41 editorconfig: allow trailing whitespace in markdown
Markdown uses trailing whitespace to indicate context; eg, a blank line
with four spaces indicates that there is a hard break between the
(indented) lines surrounding that line.  Ensure that editors do not
remove this blank.
2018-06-09 18:27:18 +01:00

16 lines
305 B
INI

; Check http://editorconfig.org/ for more informations
; Top-most EditorConfig file
root = true
; tab indentation
[*]
indent_style = tab
trim_trailing_whitespace = true
insert_final_newline = true
; 4-column space indentation
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false