summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: b5ad036baae6576665cb7e03224e9d10b0445256 (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
#
# 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