From 44ccde110e0c36ad36a7d0593fd3755764e85b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sat, 14 Jan 2023 12:10:35 +0100 Subject: [PATCH] chore: fix raid type justification --- Packets/NosSmooth.Packets/Enums/Raids/RaidType.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Packets/NosSmooth.Packets/Enums/Raids/RaidType.cs b/Packets/NosSmooth.Packets/Enums/Raids/RaidType.cs index 4d8eaa9..6448ae6 100644 --- a/Packets/NosSmooth.Packets/Enums/Raids/RaidType.cs +++ b/Packets/NosSmooth.Packets/Enums/Raids/RaidType.cs @@ -5,13 +5,14 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Diagnostics.CodeAnalysis; +#pragma warning disable CS1591 namespace NosSmooth.Packets.Enums.Raids; /// /// A type of a raid. /// -[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1602:Enumeration items should be documented", Justification = "Self explanatory.")] +[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1602:Enumeration items should be documented", Justification = "Self-explanatory.")] public enum RaidType { Cuby = 0, -- 2.48.1