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