Exit Rules
exit_statement_300
This rule checks the indent of the exit keyword.
Violation
end if;
exit;
Fix
end if;
exit;
exit_statement_301
This rule checks the indent of the label.
Violation
end if;
exit_label : exit;
Fix
end if;
exit_label : exit;
exit_statement_500
This rule checks the exit keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
EXIT when condition;
Fix
exit when condition;
exit_statement_501
This rule checks the when keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
exit WHEN condition;
Fix
exit when condition;