Files
bash-it/.editorconfig
Alex Thiessen 4ad790aa47 editorconfig: Add .git* section
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.
2020-04-20 21:07:35 +02:00

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