Files
crtr/Assets/Cryville/GlobalSuppressions.cs
2023-02-26 16:16:46 +08:00

49 lines
1.6 KiB
C#

// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
using System.Diagnostics.CodeAnalysis;
// Inline variable declaration not supported
[assembly: SuppressMessage("Style", "IDE0020")]
[assembly: SuppressMessage("Style", "IDE0038")]
[assembly: SuppressMessage("Style", "IDE0018")]
[assembly: SuppressMessage("Style", "IDE0019")]
// Null operators not supported
[assembly: SuppressMessage("Style", "IDE0016")]
[assembly: SuppressMessage("Style", "IDE0029")]
[assembly: SuppressMessage("Style", "IDE0031")]
[assembly: SuppressMessage("Style", "IDE0270")]
[assembly: SuppressMessage("Style", "IDE1005")]
// Null compound assignment not supported
[assembly: SuppressMessage("Style", "IDE0074")]
// Range operator is not supported
[assembly: SuppressMessage("Style", "IDE0057")]
// Simple `default` usage not supported
[assembly: SuppressMessage("Style", "IDE0034")]
// Simplified new not supported
[assembly: SuppressMessage("Style", "IDE0017")]
[assembly: SuppressMessage("Style", "IDE0090")]
// Pattern matching not supported
[assembly: SuppressMessage("Style", "IDE0066")]
[assembly: SuppressMessage("Style", "IDE0083")]
// Simple 'using' statement not supported
[assembly: SuppressMessage("Style", "IDE0063")]
// Index operator not supported
[assembly: SuppressMessage("Style", "IDE0056")]
// Local function not supported
[assembly: SuppressMessage("Style", "IDE0039")]
// Readonly struct not supported
[assembly: SuppressMessage("Style", "IDE0250")]