-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
25 lines (17 loc) · 1.12 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
[*.cs]
# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = silent
# CS0649: Is never assigned to, and will always have its default value null AmazonS3Bucket.cs(12,37)
dotnet_diagnostic.CS0649.severity = silent
# CS8625: Cannot convert null literal to non-nullable
dotnet_diagnostic.CS8625.severity = silent
# CS8604: Possible null reference argument for parameter
dotnet_diagnostic.CS8604.severity = silent
# CS8634: The type 'T?' cannot be used as type parameter 'TEntity' in the generic type or method
dotnet_diagnostic.CS8634.severity = silent
# CS8601: Possible null reference assignment
dotnet_diagnostic.CS8601.severity = silent
# CS8603: Possible null reference return
dotnet_diagnostic.CS8603.severity = silent
# ControleAcessoMapTest.cs(29,52): warning CS8620: Argument of type 'IMutableProperty?[]' cannot be used for parameter 'properties' of type 'IReadOnlyList<IReadOnlyProperty>' in 'IMutableIndex? IMutableEntityType.FindIndex(IReadOnlyList<IReadOnlyProperty> properties)' due to differences in the nullability of reference types.
dotnet_diagnostic.CS8620.severity = silent