20 lines
576 B
INI
20 lines
576 B
INI
[*.cs]
|
|
|
|
# CS8601: 引用类型赋值可能为 null。
|
|
dotnet_diagnostic.CS8601.severity = silent
|
|
|
|
# CS8602: 解引用可能出现空引用。
|
|
dotnet_diagnostic.CS8602.severity = none
|
|
|
|
# CS8600: 将 null 字面量或可能为 null 的值转换为非 null 类型。
|
|
dotnet_diagnostic.CS8600.severity = none
|
|
|
|
# CS1591: 缺少对公共可见类型或成员的 XML 注释
|
|
dotnet_diagnostic.CS1591.severity = silent
|
|
|
|
# CA1305: 指定 IFormatProvider
|
|
dotnet_diagnostic.CA1305.severity = none
|
|
|
|
# CS8604: 引用类型参数可能为 null。
|
|
dotnet_diagnostic.CS8604.severity = none
|