Is your feature request related to a problem? Please describe.
I'd like rules to enforce case on the in keyword in for loops/generates, e.g.
correcting this:
my_loop : for lv_thing IN t_things loop
my_gen : for lv_thing IN t_things generate
to this
my_loop : for lv_thing in t_things loop
my_gen : for lv_thing in t_things generate
Is your feature request related to a problem? Please describe. I'd like rules to enforce case on the
in
keyword in for loops/generates, e.g. correcting this:to this