File size: 390 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# http://editorconfig.org
root = true
[*]
# yes, we use tabs
indent_style = tab
# To control tab size in github diffs
# See https://github.com/isaacs/github/issues/170#issuecomment-150489692
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[*.yml]
indent_size = 2
indent_style = space
|