From 80afa2c0aec37b7f98cc22615417c36672e695da Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 28 Apr 2020 00:35:52 -0400 Subject: tidy up, work on stateful --- IrcStates/Numeric.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'IrcStates/Numeric.cs') diff --git a/IrcStates/Numeric.cs b/IrcStates/Numeric.cs index f5525f6..3cd63b3 100644 --- a/IrcStates/Numeric.cs +++ b/IrcStates/Numeric.cs @@ -1,8 +1,10 @@ // ReSharper disable InconsistentNaming + namespace IrcStates { public static class Numeric { +#pragma warning disable CA1707 // Identifiers should not contain underscores public const string RPL_WELCOME = "001"; public const string RPL_ISUPPORT = "005"; public const string RPL_MOTD = "372"; @@ -45,5 +47,6 @@ namespace IrcStates public const string RPL_ENDOFWHOIS = "318"; public const string ERR_NOSUCHCHANNEL = "403"; +#pragma warning restore CA1707 // Identifiers should not contain underscores } } -- cgit 1.4.1