org.sonar.css.checks.l10n.scss.mixin-naming-convention.html Maven / Gradle / Ivy
Shared coding conventions allow teams to collaborate efficiently. This rule checks that all mixin names match a
provided regular expression.
Noncompliant Code Example
With default format ^[a-z][-a-z0-9]*$
:
@mixin my_mixin { ... }
Compliant Solution
With default format ^[a-z][-a-z0-9]*$
:
@mixin my-mixin { ... }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy