Shared coding conventions allow teams to collaborate efficiently. This rule checks that all less variable names match a provided regular expression.
@myColor: green; /* Noncompliant */ @my_color: green; /* Noncompliant */
@my-color: green;