zlib-ng2: add DLL to NSIS and WIX installers
[wireshark.git] / .editorconfig
blob0d815e2b5a7ac83d1ba378975d7b8167bbdcc793
2 # Editor configuration
4 # https://editorconfig.org
7 # Global settings
9 # We're the top. We're the Coliseum.
10 root = true
12 [*]
13 tab_width = 8
14 charset = utf-8
15 trim_trailing_whitespace = true
16 insert_final_newline = true
18 # CMake
19 # The CMake project itself uses two spaces:
20 # https://gitlab.kitware.com/cmake/cmake/-/blob/master/.editorconfig
21 [{CMake*,*.cmake,*.cmake.in}]
22 indent_style = tab
23 [CMake*.json]
24 indent_style = space
25 indent_size = 2
27 # Makefiles. Although we dropped Autotools we still have a few lying around.
28 [Makefile*]
29 indent_style = tab
30 indent_size = 8
32 # Python
33 [*.{py,py.in}]
34 indent_style = space
35 indent_size = 4
37 # Lemon
38 [*.lemon]
39 indent_style = space
40 indent_size = 4
42 # WiX. The `xmllint --format` default is two spaces.
43 [*.wx?]
44 indent_style = space
45 indent_size = 2
47 # NSIS
48 [*.ns[ih]]
49 indent_style = space
50 indent_size = 2
52 # YAML
53 [*.yml]
54 indent_style = space
55 indent_size = 2
57 # Asciidoc
58 [*.adoc]
59 indent_style = space
60 indent_size = 4
62 # GraphViz. The examples at https://gitlab.com/graphviz/graphviz/-/blob/master/graphs
63 # seem to be all over the place, so just go with 4 spaces for now.
64 [*.gv]
65 indent_style = space
66 indent_size = 4
68 # C/C++/Objective C
69 [*.{c,cpp,h,m}]
70 indent_style = space
71 indent_size = 4
73 # Flex (lexical analyzer generator)
74 [*.l]
75 indent_style = tab
76 indent_size = 8