mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
15 lines
461 B
C#
15 lines
461 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 IdFriend = "RA0002";
|
|
public const string IdExplicitVirtual = "RA0003";
|
|
|
|
public static SuppressionDescriptor MeansImplicitAssignment =>
|
|
new SuppressionDescriptor("RADC1000", "CS0649", "Marked as implicitly assigned.");
|
|
}
|