mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 02:56:17 +00:00
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.
16 lines
305 B
INI
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
|