has/.editorconfig

24 lines
386 B
INI
Raw Permalink Normal View History

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
[*.{sh,bash,bats}]
indent_size = 2
indent_style = space
# Markdown
2015-02-12 14:58:24 +01:00
[*.md]
indent_size = 4
2015-02-12 14:58:24 +01:00
trim_trailing_whitespace = false
# Makefiles always use tabs for indentation
[{Makefile, makefile}]
indent_style = tab
indent_size = 4