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.

22 lines
583 B

  1. [*.cs]
  2. # S101: Types should be named in PascalCase
  3. dotnet_diagnostic.S101.severity = none
  4. # IDE1006: 命名樣式
  5. dotnet_diagnostic.IDE1006.severity = none
  6. # IDE0060: 移除未使用的參數
  7. dotnet_code_quality_unused_parameters = all:silent
  8. # CA1707: 識別項不應包含底線
  9. dotnet_diagnostic.CA1707.severity = none
  10. # S1199: Nested code blocks should not be used
  11. dotnet_diagnostic.S1199.severity = none
  12. # CA1822: 將成員標記為靜態
  13. dotnet_diagnostic.CA1822.severity = none
  14. # CA1031: 不要攔截一般例外狀況類型
  15. dotnet_diagnostic.CA1031.severity = none