Sharing some naming conventions is a key point to make it possible for a team to efficiently collaborate. This rule allows to check that all macro
names match a provided regular expression.
Noncompliant code example
With default provided regular expression: ^([A-Z0-9_]*|[a-z0-9_]*)$
DEFINE MyMacro.
...
END-OF-DEFINITION.
Compliant solution
DEFINE my_macro.
...
END-OF-DEFINITION.