2021-12-28 23:25:16 +01:00
|
|
|
[**/Generated/**.cs]
|
2023-09-19 16:37:02 +02:00
|
|
|
# CA1062: Validate parameter is non-null before using it
|
2021-12-28 23:25:16 +01:00
|
|
|
# Useful for generated code, as it disables nullable
|
|
|
|
dotnet_diagnostic.CA1062.severity = error
|
|
|
|
# CA1069: Enums should not have duplicate values
|
|
|
|
dotnet_diagnostic.CA1069.severity = none
|
|
|
|
# CA1708: Identifiers should differ by more than case
|
|
|
|
dotnet_diagnostic.CA1708.severity = none
|
2024-01-24 00:49:34 +01:00
|
|
|
# CA1716: Identifiers should not match keywords
|
|
|
|
# This is suppressed, because it will report `@event` as well as `event`
|
|
|
|
dotnet_diagnostic.CA1716.severity = none
|
2023-09-15 19:50:40 +02:00
|
|
|
# CS1591: Missing XML comment for publicly visible type or member
|
|
|
|
dotnet_diagnostic.CS1591.severity = none
|
|
|
|
# CS1573: Parameter has no matching param tag in the XML comment
|
|
|
|
dotnet_diagnostic.CS1573.severity = none
|
2023-09-19 16:37:02 +02:00
|
|
|
|
|
|
|
[GodotSharp/Core/**.cs]
|
|
|
|
# CS1591: Missing XML comment for publicly visible type or member
|
|
|
|
# TODO: Temporary change to not pollute the warnings, but we need to document public APIs
|
|
|
|
dotnet_diagnostic.CS1591.severity = suggestion
|