Multiple declarations on a single line are more difficult to read. This rule checks if there is more than one declaration per code line.
architecture a of e is constant const1, const2 : std_logic; begin end;
architecture a of e is constant const1 : std_logic; constant const2 : std_logic; begin end;