mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
16 lines
510 B
C#
16 lines
510 B
C#
using Microsoft.CodeAnalysis;
|
|
|
|
namespace Robust.Analyzers;
|
|
|
|
public static class Diagnostics
|
|
{
|
|
public const string IdExplicitInterface = "RA0000";
|
|
public const string IdSerializable = "RA0001";
|
|
public const string IdAccess = "RA0002";
|
|
public const string IdExplicitVirtual = "RA0003";
|
|
public const string IdTaskResult = "RA0004";
|
|
|
|
public static SuppressionDescriptor MeansImplicitAssignment =>
|
|
new SuppressionDescriptor("RADC1000", "CS0649", "Marked as implicitly assigned.");
|
|
}
|