Declaring multiple items on a single line reduces readability.
This rule enforces that there is at most one port declaration or mapping per line.
component my_component
port(
c, v : in std_logic
);
end component;
component my_component
port(
c : in std_logic;
v : in std_logic
);
end component;