-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy path.editorconfig
More file actions
39 lines (27 loc) · 1.03 KB
/
Copy path.editorconfig
File metadata and controls
39 lines (27 loc) · 1.03 KB
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
[*]
end_of_line = crlf
indent_style = space
indent_size = 4
[*.xml]
indent_style = space
[*.cs]
csharp_new_line_before_open_brace = all
# RCS1229: Use async/await when necessary.
dotnet_diagnostic.RCS1229.severity = error
# IDE0290: Use primary constructor
csharp_style_prefer_primary_constructors = false
# IDE0028: Simplify collection initialization
dotnet_style_collection_initializer = false
# IDE0305: Simplify collection initialization
dotnet_diagnostic.IDE0305.severity = none
# Logging Warnings: temporary disabled, enable them again later on
# CA1848: Use the LoggerMessage delegates
dotnet_diagnostic.CA1848.severity = none
# CA2254: Template should be a static expression
dotnet_diagnostic.CA2254.severity = none
# CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity = none
# CA1510: Use ArgumentNullException throw helper
dotnet_diagnostic.CA1510.severity = none
# CA1513: Use ObjectDisposedException throw helper
dotnet_diagnostic.CA1513.severity = none