Configuration files of `git` are managed by the tool and thus are tab-indented. If a developer happens to edit such a file manually, the indentation would become inconsistent. Add an explicit section for such files and set the indentation to tabs.
16 lines
255 B
INI
Executable File
16 lines
255 B
INI
Executable File
# EditorConfig is awesome: http://EditorConfig.org
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
[.git*]
|
|
indent_style = tab
|