forked from AMReX-Astro/Microphysics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
62 lines (44 loc) · 1.13 KB
/
.editorconfig
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# http://EditorConfig.org
#
# precedence of rules is bottom to top
# this is the top-most EditorConfig file
root = true
[*.{c,h,cpp,hpp,H,py}]
# 4 space indentation
indent_style = space
indent_size = 4
# Clean up trailing whitespace
trim_trailing_whitespace = true
# unix-style newlines
end_of_line = lf
# newline ending in files
insert_final_newline = true
[networks/**/reaclib_rates.H]
# some reaclib rate labels have trailing spaces
trim_trailing_whitespace = false
[*.md]
# two end of line whitespaces are newlines without a paragraph
trim_trailing_whitespace = false
[*.rst]
# Enforce UTF-8 encoding
charset = utf-8
# Unix-style newlines
end_of_line = lf
# Newline ending in files
insert_final_newline = true
# 3 space indentation
indent_style = space
indent_size = 3
# Clean up trailing whitespace
trim_trailing_whitespace = true
[{Makefile,GNUmakefile,Make.*}]
# TABs are part of its syntax
indent_style = tab
indent_size = unset
[util/{autodiff,gcem}/**]
# don't mess with the autodiff or gcem subtrees
indent_style = unset
indent_size = unset
trim_trailing_whitespace = unset
end_of_line = unset
insert_final_newline = unset