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 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@ namespace PepLib
|
||||
{
|
||||
public enum GrainType
|
||||
{
|
||||
No = 0x0,
|
||||
Yes = 0x1,
|
||||
No = 0x0,
|
||||
Yes = 0x1,
|
||||
Soft = 0x2,
|
||||
Hard = 0x3
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user