This rule checks that all variable names match a provided regular expression.
Considering the default expression:
DECLARE dept_name dept.name%type; -- Compliant dept_name_ dept.name%type; -- Noncompliant BEGIN ... END;