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
|
public enum ApplicationType
|
||||||
{
|
{
|
||||||
None = 0x0,
|
None = 0x0,
|
||||||
Laser = 0x1,
|
Laser = 0x1,
|
||||||
Flame = 0x2,
|
Flame = 0x2,
|
||||||
Punch = 0x3,
|
Punch = 0x3,
|
||||||
PlasmaPunch = 0x4,
|
PlasmaPunch = 0x4,
|
||||||
Waterjet = 0x6,
|
Waterjet = 0x6,
|
||||||
LaserPunch = 0x7,
|
LaserPunch = 0x7,
|
||||||
FlamePlasma = 0x9
|
FlamePlasma = 0x9
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,10 +3,10 @@ namespace PepLib
|
|||||||
{
|
{
|
||||||
public enum DrawingType
|
public enum DrawingType
|
||||||
{
|
{
|
||||||
None = 0x20,
|
None = 0x20,
|
||||||
Drawing = 0x44,
|
Drawing = 0x44,
|
||||||
Product = 0x50,
|
Product = 0x50,
|
||||||
Rotary = 0x52,
|
Rotary = 0x52,
|
||||||
Tool = 0x54
|
Tool = 0x54
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ namespace PepLib
|
|||||||
{
|
{
|
||||||
public enum GrainType
|
public enum GrainType
|
||||||
{
|
{
|
||||||
No = 0x0,
|
No = 0x0,
|
||||||
Yes = 0x1,
|
Yes = 0x1,
|
||||||
Soft = 0x2,
|
Soft = 0x2,
|
||||||
Hard = 0x3
|
Hard = 0x3
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user