summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 2a6a8dc0fe03ae12243ea587233eeab5bc725970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Editor configuration
#
# http://editorconfig.org/
#

# Global settings

# We're the top. We're the Coliseum.
root = true

[*]
trim_trailing_whitespace = true
insert_final_newline = true

# Autotools, Make, Nmake
[{Makefile.am,Makefile,Makefile.nmake,config.nmake}]
indent_style = tab

# Python
[*.py]
indent_style = space
indent_size = 4
charset = utf-8

# Dissectors
[epan/dissectors/*.[ch]]
indent_style = space
indent_size = 4
charset = utf-8