-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
34 lines (23 loc) · 1.07 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
[*.cs]
# CS1998: Async method lacks 'await' operators and will run synchronously
dotnet_diagnostic.CS1998.severity = none
# IDE0055: Fix formatting
dotnet_diagnostic.IDE0055.severity = none
# CA1822: Mark members as static
dotnet_diagnostic.CA1822.severity = none
# Default severity for all analyzer diagnostics
dotnet_analyzer_diagnostic.severity = none
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = false
# IDE0057: Use range operator
csharp_style_prefer_range_operator = false
# IDE0047: Remove unnecessary parentheses
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
# IDE0047: Remove unnecessary parentheses
dotnet_diagnostic.IDE0047.severity = none
# DV2001: No Dependency Diagram linked
dotnet_diagnostic.DV2001.severity = none
# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = silent
# CS8714: The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint.
dotnet_diagnostic.CS8714.severity = none