g2384 / VHDLFormatter

VHDL formatter web online written in typescript
https://g2384.github.io/VHDLFormatter/
MIT License
51 stars 20 forks source link

Multi-line enumeration types not indented #11

Closed LulzFTW closed 5 years ago

LulzFTW commented 5 years ago

Report a bug

Input

type STATE_TYPE is (
    A,
    B,
    C,
    D
);

Expected Behavior

type STATE_TYPE is (
    A,
    B,
    C,
    D
);

Actual Behavior

type STATE_TYPE is (
A,
B,
C,
D
);
g2384 commented 5 years ago

🤕

g2384 commented 5 years ago

Could you please check if this has been fixed?

LulzFTW commented 5 years ago

Works on my code. Thanks!