Files
UnrealEngineUWP/Engine/Source/Programs/Shared/EpicGames.BuildGraph/.editorconfig
Ben Marsh 330f1e7155 EpicGames.BuildGraph: Fix warnings when compiling against NET 6 SDK.
#preflight none

[CL 22274984 by Ben Marsh in ue5-main branch]
2022-09-30 13:52:23 -04:00

18 lines
498 B
INI

# Dotnet code style settings:
[*.cs]
# CA2227: Collection properties should be read only
dotnet_diagnostic.CA2227.severity = none
# CA1000: Do not declare static members on generic types
dotnet_diagnostic.CA1000.severity = none
# CA1822: Mark members as static
dotnet_diagnostic.CA1822.severity = none
# CA1005: Avoid excessive parameters on generic types
dotnet_diagnostic.CA1005.severity = none
# CA1043: Use Integral Or String Argument For Indexers
dotnet_diagnostic.CA1043.severity = none