Shared coding conventions allow teams to collaborate efficiently. This rule checks that all mixin names match a provided regular expression.
^[a-z][-a-z0-9]*$
@mixin my_mixin { ... }
@mixin my-mixin { ... }