-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.editorconfig
64 lines (49 loc) · 1016 Bytes
/
.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
# EditorConfig is awesome: http://EditorConfig.org
# root level editorconfig file
root = true
# windows settings
[*]
indent_style = space
insert_final_newline = true
end_of_line = crlf
# toml
[*.{toml}]
trim_trailing_whitespace = false
# powershell
[*.{ps1,psm1,psd1}]
indent_size = 4
trim_trailing_whitespace = true
# C#
[*.{cs}]
indent_size = 4
trim_trailing_whitespace = true
# json
[*.{json}]
indent_size = 2
trim_trailing_whitespace = true
[*.config.json]
indent_style = tab
end_of_line = crlf
# xml and yml
[*.{ps1xml,props,xml,yaml,yml}]
indent_size = 2
# VBA
[*.{bas,cls,frm,doccls}]
indent_style = space
indent_size = 4
end_of_line = crlf
# PowerQuery
[*.{pq,pqm,m}]
indent_style = tab
end_of_line = crlf
# XL CustomUI
[customUI.xml, customUI14.xml]
indent_style = tab
end_of_line = crlf
# markdown
[*.{md,markdown}]
trim_trailing_whitespace = false
# XL Themes
[*{Colors.xml, Fonts.xml, Font.xml, Styles.xml, theme.xml, Theme.xml, theme*.xml, Theme*.xml}]
indent_size = 2
end_of_line = crlf