You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/.editorconfig

26 lines
708 B

[*.cs]
# CA2007: 考虑对等待的任务调用 ConfigureAwait
dotnet_diagnostic.CA2007.severity = none
# CA1308: 将字符串规范化为大写
dotnet_diagnostic.CA1308.severity = none
# CA1054: URI 参数不应为字符串
dotnet_diagnostic.CA1054.severity = none
# CA1055: URI 返回值不应是字符串
dotnet_diagnostic.CA1055.severity = none
# CA1056: URI 属性不应是字符串
dotnet_diagnostic.CA1056.severity = none
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# CA1052: Static holder types should be Static or NotInheritable
dotnet_diagnostic.CA1052.severity = none
# CA1822: Mark members as static
dotnet_diagnostic.CA1822.severity = none