jeremiah-c-leary / vhdl-style-guide

Style guide enforcement for VHDL
GNU General Public License v3.0
192 stars 40 forks source link

Rules for next statements #1265

Closed JHertz5 closed 1 month ago

JHertz5 commented 1 month ago

Is your feature request related to a problem? Please describe. I'd like to have rules for next statements similar to those available for return statements, e.g. enforcing indentation and case. For example, to fix

    my_loop : loop

            label_next : NEXT my_loop WHEN condition;

    end loop;

to

    my_loop : loop

      label_next : next my_loop when condition;

    end loop;
JHertz5 commented 1 month ago

PR #1266 raised.

jeremiah-c-leary commented 1 month ago

Morning @JHertz5 ,

PR looks perfect.

I will merge it to master.

Thanks,

--Jeremy

JHertz5 commented 1 month ago

Thanks very much!