-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy path.editorconfig
More file actions
19 lines (13 loc) · 717 Bytes
/
.editorconfig
File metadata and controls
19 lines (13 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[*.cs]
# CA1416: Validate platform compatibility
dotnet_diagnostic.CA1416.severity = suggestion
# CS8620: Argument cannot be used for parameter due to differences in the nullability of reference types.
dotnet_diagnostic.CS8620.severity = error
# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = error
# CS8765: Nullability of type of parameter doesn't match overridden member (possibly because of nullability attributes).
dotnet_diagnostic.CS8765.severity = error
# CS8600: Converting null literal or possible null value to non-nullable type.
dotnet_diagnostic.CS8600.severity = error
# CS8604: Possible null reference argument.
dotnet_diagnostic.CS8604.severity = error