-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
53 lines (40 loc) · 880 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
root = true
[*]
charset = utf-8-bom
end_of_line = crlf
indent_size = 4
indent_style = space
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true
[.bowerrc|*.yml]
charset = utf-8
# Xml project files
[*.*proj]
indent_size = 2
# Xml build files
[*.builds]
indent_size = 2
# Xml files
[*.{xml,stylecop,resx,ruleset,xsd}]
indent_size = 2
# Xml config files
[*.{props,targets,config,nuspec,vsixmanifest,vsct}]
indent_size = 2
# JSON files
# CA1716:
dotnet_diagnostic.CA1716.severity = none
[*.json]
indent_size = 2
# Shell scripts
[*.sh]
end_of_line = lf
# ReSharper properties
resharper_csharp_wrap_lines=false
resharper_enforce_line_ending_style=true
resharper_js_wrap_lines=false
resharper_protobuf_wrap_lines=false
resharper_use_indent_from_vs=false
resharper_vb_wrap_lines=false
resharper_xmldoc_wrap_lines=false
resharper_xml_wrap_lines=false