Why is this an issue?
Shared coding conventions allow teams to collaborate efficiently. This rule checks that reserved words are written in upper case.
Noncompliant code example
BEGIN
null; -- Noncompliant
END;
/
Compliant solution
BEGIN
NULL;
END;
/