[go: up one dir, main page]

Menu

[dfec81]: / .editorconfig  Maximize  Restore  History

Download this file

40 lines (31 with data), 591 Bytes

 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
31
32
33
34
35
36
37
38
39
# see editorconfig.org
root = true
# default settings for all file types
[*]
insert_final_newline = true
trim_trailing_whitespace = true
# settings per extension (alphabetically)
[{*.cmake,CMakeLists.txt}]
indent_size = 2
indent_style = space
[*.{cpp,h}]
charset = utf-8
indent_size = 4
indent_style = space
[*.json]
charset = utf-8
indent_size = 2
indent_style = space
[Makefile]
indent_size = 4
indent_style = tab
[*.md]
charset = utf-8
trim_trailing_whitespace = false
[*.py]
charset = utf-8
indent_size = 4
indent_style = space
[.travis.yml]
indent_size = 2
indent_style = space