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.
23 lines
583 B
23 lines
583 B
[*.cs]
|
|
|
|
# S101: Types should be named in PascalCase
|
|
dotnet_diagnostic.S101.severity = none
|
|
|
|
# IDE1006: 命名樣式
|
|
dotnet_diagnostic.IDE1006.severity = none
|
|
|
|
|
|
# IDE0060: 移除未使用的參數
|
|
dotnet_code_quality_unused_parameters = all:silent
|
|
|
|
# CA1707: 識別項不應包含底線
|
|
dotnet_diagnostic.CA1707.severity = none
|
|
|
|
# S1199: Nested code blocks should not be used
|
|
dotnet_diagnostic.S1199.severity = none
|
|
|
|
# CA1822: 將成員標記為靜態
|
|
dotnet_diagnostic.CA1822.severity = none
|
|
|
|
# CA1031: 不要攔截一般例外狀況類型
|
|
dotnet_diagnostic.CA1031.severity = none
|