Return Statement Rules
return_statement_300
This rule checks the indentation of the return keyword.
Violation
return my_value;
end function;
Fix
return my_value;
end function;
return_statement_500
This rule checks the return keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
RETURN my_value;
Fix
return my_value;