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