Null Statement Rules
null_statement_300
This rule checks the indentation of the null keyword.
Violation
null;
end loop;
Fix
null;
end loop;
null_statement_301
This rule checks the indentation of the label.
Violation
null_label : null;
end loop;
Fix
null_label : null;
end loop;
null_statement_500
This rule checks the null keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
NULL;
Fix
null;