-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
44 lines (35 loc) · 1.11 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
root = true
[*]
end_of_line = crlf
insert_final_newline = true
trim_trailing_whitespace = true
[{*.csproj, *.targets, *.props}]
charset = utf-8
indent_style = space
indent_size = 2
max_line_length = 120
[*.cs]
charset = utf-8
indent_style = space
indent_size = 4
max_line_length = 160
csharp_space_after_cast = true
dotnet_sort_system_directives_first = false
dotnet_separate_import_directive_groups = false
dotnet_style_namespace_match_folder = true
csharp_indent_case_contents_when_block = true
dotnet_diagnostic.CA1507.severity = error
dotnet_diagnostic.CA2000.severity = error
dotnet_diagnostic.CA2012.severity = error
dotnet_diagnostic.CA2016.severity = error
dotnet_diagnostic.CA2213.severity = error
dotnet_diagnostic.CA2215.severity = error
dotnet_diagnostic.CA2217.severity = error
dotnet_diagnostic.CA2234.severity = error
dotnet_diagnostic.CA5350.severity = error
dotnet_diagnostic.CA5351.severity = error
dotnet_diagnostic.CA5358.severity = error
dotnet_diagnostic.CA5359.severity = error
dotnet_diagnostic.CA5364.severity = error
dotnet_diagnostic.CA5384.severity = error
dotnet_diagnostic.CA5394.severity = error