org.sonar.css.checks.l10n.scss.empty-mixin.html Maven / Gradle / Ivy
An empty mixin is one that doesn't contain any declaration. Empty mixins are useless and should be removed.
Noncompliant Code Example
@mixin my-mixin {}
Compliant Solution
@mixin my-mixin {
width: 10px;
}
stylelint Related Rules
© 2015 - 2024 Weber Informatics LLC | Privacy Policy