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]+)*$:

public static const first:String = "first";

Compliant solution

public static const FIRST:String = "first";