.editorconfig 820 B

1234567891011121314151617181920212223
  1. [*.cs]
  2. #### Meziantou.Analyzer rules ####
  3. # MA0001: StringComparison is missing
  4. # https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0001.md
  5. #
  6. # TODO: Re-enable when issues are fixed
  7. dotnet_diagnostic.MA0001.severity = suggestion
  8. # MA0110: Use the Regex source generator
  9. # https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0110.md
  10. dotnet_diagnostic.MA0110.severity = none
  11. #### .NET Compiler Platform analysers rules ####
  12. # CA1307: Specify StringComparison for clarity
  13. # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1307
  14. dotnet_diagnostic.CA1307.severity = none
  15. # CA1822: Mark members as static
  16. # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822
  17. dotnet_code_quality.CA1822.api_surface = none