-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
31 lines (21 loc) · 1000 Bytes
/
.editorconfig
File metadata and controls
31 lines (21 loc) · 1000 Bytes
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
[*.cs]
# CS8625: Cannot convert null literal to non-nullable reference type.
dotnet_diagnostic.CS8625.severity = none
# CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
dotnet_diagnostic.CS8618.severity = none
# IDE0290: Use primary constructor
dotnet_diagnostic.IDE0290.severity = none
# IDE0300: Simplify collection initialization
dotnet_diagnostic.IDE0300.severity = none
# IDE0028: Simplify collection initialization
dotnet_diagnostic.IDE0028.severity = none
# IDE0090: 'new' expression can be simplified
dotnet_diagnostic.IDE0090.severity = none
# IDE0016: Null check can be simplified
dotnet_diagnostic.IDE0016.severity = none
# IDE0305: Use collection expression for fluent
dotnet_diagnostic.IDE0305.severity = none
# IDE0066: Use switch expression
dotnet_diagnostic.IDE0066.severity = none
# CA1510: Use ArgumentNullException throw helper
dotnet_diagnostic.CA1510.severity = none