Why is this an issue?

This rule checks if processes are commented.

How to fix it

Code examples

Noncompliant code example

architecture a of e is
begin
  process is
  begin
  end;
end;

Compliant solution

architecture a of e is
begin
  -- My comment
  process is
  begin
  end;
end;