Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 272 Bytes

exit_statement_rules.rst

File metadata and controls

27 lines (15 loc) · 272 Bytes

Exit Rules

exit_statement_300

This rule checks the indent of the exit keyword.

Violation

end if;

  exit;

Fix

end if;

exit;