rules repository

G-2185

🆓
Warning

Avoid using overly short names for explicitly or implicitly declared identifiers.

Reason

You should ensure that the name you have chosen well defines its purpose and usage. While you can save a few keystrokes typing very short names, the resulting code is obscure and hard for anyone besides the author to understand.

Example

Non-Compliant Example

declare
   i integer;
   c constant integer := 1;
   e exception;
begin
   i := c;
   do_something(i);
exception
   when e then
      null;
end;
/
Issues
LineColumnMessage
24Identifier i is less than 4 characters.
34Identifier c is less than 4 characters.
44Identifier e is less than 4 characters.

Compliant Solution - ★★★★★

declare
   l_sal_comm     integer;
   co_my_constant constant integer := 1;
   e_my_exception exception;
begin
   l_sal_comm := co_my_constant;
   do_something(l_sal_comm);
exception
   when e_my_exception then
      null;
end;
/

Parameters

Use parameters to customize the rule to your needs.

ParameterDescriptionDefault Value
MinLenOfIdentifierMinimum number of characters for a literal. An issue is reported when using shorter identifiers.4

References