This rule checks if there are multiple statements on one line.
if rising_edge(clk) then dream <= fly; ride <= run; -- Noncompliant: Two statements on the same line end if;
if rising_edge(clk) then dream <= fly; ride <= run; end if;