2015-02-12 14:58:24 +01:00
|
|
|
# http://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
indent_style = space
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
2019-04-23 08:38:38 +02:00
|
|
|
[*.{sh,bash,bats}]
|
|
|
|
indent_size = 2
|
|
|
|
indent_style = space
|
|
|
|
|
|
|
|
# Markdown
|
2015-02-12 14:58:24 +01:00
|
|
|
[*.md]
|
2019-04-23 08:38:38 +02:00
|
|
|
indent_size = 4
|
2015-02-12 14:58:24 +01:00
|
|
|
trim_trailing_whitespace = false
|
2017-08-29 08:31:11 +02:00
|
|
|
|
2019-04-23 08:38:38 +02:00
|
|
|
# Makefiles always use tabs for indentation
|
2017-08-29 08:31:11 +02:00
|
|
|
[{Makefile, makefile}]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|