Is your feature request related to a problem? Please describe.
I would like to have rules to enforce case on parameter classes (e.g. signal, constant, etc.) in functions and procedures.
For example
architecture rtl of test is
procedure overflow (
a : integer;
VARIABLE a : integer;
CONSTANT a : integer;
SIGNAL a : integer;
FILE a : file_type
) is
begin
end procedure overflow;
begin
end architecture rtl;
I would like a rule to change the parameter classes to lowercase.
Is your feature request related to a problem? Please describe. I would like to have rules to enforce case on parameter classes (e.g.
signal
,constant
, etc.) in functions and procedures. For exampleI would like a rule to change the parameter classes to lowercase.