From 1358f0136b7d550ad50e756684688a919acb4ceb Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 14 Jan 2026 07:52:34 -0500 Subject: [PATCH] style(PepLib.Core): normalize enum value alignment Remove extra spacing used for column alignment in enum value declarations to follow standard C# formatting conventions. Co-Authored-By: Claude Opus 4.5 --- PepLib.Core/ApplicationType.cs | 12 ++++++------ PepLib.Core/DrawingType.cs | 6 +++--- PepLib.Core/GrainType.cs | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/PepLib.Core/ApplicationType.cs b/PepLib.Core/ApplicationType.cs index 98bb2ac..3c26574 100644 --- a/PepLib.Core/ApplicationType.cs +++ b/PepLib.Core/ApplicationType.cs @@ -3,13 +3,13 @@ namespace PepLib { public enum ApplicationType { - None = 0x0, - Laser = 0x1, - Flame = 0x2, - Punch = 0x3, + None = 0x0, + Laser = 0x1, + Flame = 0x2, + Punch = 0x3, PlasmaPunch = 0x4, - Waterjet = 0x6, - LaserPunch = 0x7, + Waterjet = 0x6, + LaserPunch = 0x7, FlamePlasma = 0x9 } } diff --git a/PepLib.Core/DrawingType.cs b/PepLib.Core/DrawingType.cs index dd5c0d0..84319cc 100644 --- a/PepLib.Core/DrawingType.cs +++ b/PepLib.Core/DrawingType.cs @@ -3,10 +3,10 @@ namespace PepLib { public enum DrawingType { - None = 0x20, + None = 0x20, Drawing = 0x44, Product = 0x50, - Rotary = 0x52, - Tool = 0x54 + Rotary = 0x52, + Tool = 0x54 } } diff --git a/PepLib.Core/GrainType.cs b/PepLib.Core/GrainType.cs index 6a4345c..42caa4a 100644 --- a/PepLib.Core/GrainType.cs +++ b/PepLib.Core/GrainType.cs @@ -3,8 +3,8 @@ namespace PepLib { public enum GrainType { - No = 0x0, - Yes = 0x1, + No = 0x0, + Yes = 0x1, Soft = 0x2, Hard = 0x3 }