-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.editorconfig
28 lines (19 loc) · 869 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
[*.cs]
# CA1416: Validate platform compatibility
dotnet_diagnostic.CA1416.severity = silent
# IDE0032: Use auto property
dotnet_diagnostic.IDE0032.severity = silent
# CS8625: Cannot convert null literal to non-nullable reference type.
dotnet_diagnostic.CS8625.severity = silent
# CS8603: Possible null reference return.
dotnet_diagnostic.CS8603.severity = silent
# CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
dotnet_diagnostic.CS8618.severity = silent
# CS8601: Possible null reference assignment.
dotnet_diagnostic.CS8601.severity = none
# CA1304: Specify CultureInfo
dotnet_diagnostic.CA1304.severity = none
# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = none
# CS8605: Unboxing a possibly null value.
dotnet_diagnostic.CS8605.severity = none