CMake: remove GIT_BIN_PARAM
[metze/wireshark/wip.git] / .editorconfig
1 #
2 # Editor configuration
3 #
4 # http://editorconfig.org/
5 #
6
7 # Global settings
8
9 # We're the top. We're the Coliseum.
10 root = true
11
12 [*]
13 tab_width = 8
14 charset = utf-8
15 trim_trailing_whitespace = true
16 insert_final_newline = true
17
18 # Makefiles. Although we dropped Autotools we still have a few lying around.
19 [Makefile*]
20 indent_style = tab
21 indent_size = 8
22
23 # Python
24 [*.py]
25 indent_style = space
26 indent_size = 4
27
28 # WiX. The `xmllint --format` default is two spaces.
29 [*.wx?]
30 indent_style = spaces
31 indent_size = 2
32
33 # NSIS
34 [*.ns[ih]]
35 indent_style = spaces
36 indent_size = 2
37
38 # C/C++
39 [*.{c,cpp,h}]
40 indent_style = space
41 indent_size = 4
42
43 [{capinfos,captype,mergecap,tfshark,tshark}.c]
44 indent_size = 2
45
46 [{dftest,randpkt,trigcap}.c]
47 indent_style = tab
48 indent_size = tab
49
50 [capture_stop_conditions.[ch]]
51 indent_size = 2
52
53 [cfile.[ch]]
54 indent_size = 2
55
56 [conditions.[ch]]
57 indent_size = 2
58
59 [file.[ch]]
60 indent_size = 2
61
62 [filter_files.[ch]]
63 indent_size = 2
64
65 [frame_tvbuff.[ch]]
66 indent_style = tab
67 indent_size = tab
68
69 [pcapio.[ch]]
70 indent_size = 8
71
72 [ringbuffer.[ch]]
73 indent_size = 2
74
75 [summary.[ch]]
76 indent_size = 2
77
78 [randpkt_core.[ch]]
79 indent_style = tab
80 indent_size = tab
81
82 [sharkd.c]
83 indent_size = 2
84
85 [sharkd_daemon.c]
86 indent_style = tab
87 indent_size = tab
88
89 [sharkd_session.c]
90 indent_style = tab
91 indent_size = tab
92
93 [version_info.[ch]]
94 indent_style = tab
95 indent_size = tab