All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.css.checks.l10n.scss.empty-mixin.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

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