has/.editorconfig

24 lines
386 B
INI

# 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
[*.md]
indent_size = 4
trim_trailing_whitespace = false
# Makefiles always use tabs for indentation
[{Makefile, makefile}]
indent_style = tab
indent_size = 4