timescaledb/.editorconfig
Matvey Arye 6ee217fed3 Add .editorconfig for better github display
Our code uses a tabwidth = 4. By default, github displays everything
with tabwidth = 8. But github respects .editorconfig files. So
this commit adds the appropriate .editorconfig.

This could also be useful for other editors as .editorconfig seems
to be widely used.
2019-02-14 16:09:18 -05:00

16 lines
227 B
INI

root = true
[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
[*.{c,h}]
indent_style = tab
indent_size = 4
[*.out]
trim_trailing_whitespace = false
insert_final_newline = false