Why is this an issue?
Shared coding conventions allow teams to collaborate efficiently. This rule checks that all constant names match a provided regular expression.
Noncompliant code example
With the default regular expression ^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$
:
Global Const WdgtStatusOk = 0
Compliant solution
Global Const WDGT_STATUS_OK = 0