Do not use is keyword in process.
process(clk) is -- Noncompliant: Remove "is" keyword
begin
if rising_edge(clk) then
q <= d;
end if;
end process;
process(clk) -- Compliant: "is" keyword is not present
begin
if rising_edge(clk) then
q <= d;
end if;
end process;