.editorconfig 799 B

123456789101112131415161718
  1. [**/Generated/**.cs]
  2. # CA1062: Validate parameter is non-null before using it
  3. # Useful for generated code, as it disables nullable
  4. dotnet_diagnostic.CA1062.severity = error
  5. # CA1069: Enums should not have duplicate values
  6. dotnet_diagnostic.CA1069.severity = none
  7. # CA1708: Identifiers should differ by more than case
  8. dotnet_diagnostic.CA1708.severity = none
  9. # CS1591: Missing XML comment for publicly visible type or member
  10. dotnet_diagnostic.CS1591.severity = none
  11. # CS1573: Parameter has no matching param tag in the XML comment
  12. dotnet_diagnostic.CS1573.severity = none
  13. [GodotSharp/Core/**.cs]
  14. # CS1591: Missing XML comment for publicly visible type or member
  15. # TODO: Temporary change to not pollute the warnings, but we need to document public APIs
  16. dotnet_diagnostic.CS1591.severity = suggestion