Shared naming conventions allow teams to collaborate efficiently. This rule checks that all job names match a provided regular expression.
Noncompliant code example
With the regular expression ^[A-Z][A-Z0-9]*$
:
//* Noncompliant
//$JOB01 JOB
Compliant solution
//JOB01 JOB