Common .editorconfig file for text editors
[exim.git] / .editorconfig
CommitLineData
bf5ffbb0
PP
1# Common text-editor configuration for Exim
2# http://editorconfig.org/
3
4# top-most EditorConfig file
5root = true
6
7# Unix-style newlines with a newline ending every file
8[*]
9end_of_line = lf
10insert_final_newline = true
11
12[*.{c,h}]
13indent_style = space
14indent_size = 2
15tab_width = 8
16trim_trailing_whitespace = true
17# vim users try: cinoptions=>1s,{1s
18
19# Tab indentation (no size specified)
20[Makefile]
21indent_style = tab
22