Skip to content

Latest commit

 

History

History
83 lines (70 loc) · 1.03 KB

File metadata and controls

83 lines (70 loc) · 1.03 KB

no-duplicate-mixins

Disallow duplicate mixins within a stylesheet.

@mixin font-size-default {
  font-size: 16px;
}
@mixin font-size-default {
  font-size: 18px;
}
/** ↑
 * These are duplicates */

Options

true

The following patterns are considered violations:

@mixin font-size-default {
  font-size: 16px;
}
@mixin font-size-default {
  font-size: 18px;
}
@mixin font-size-default {
  font-size: 16px;
}
@mixin font-size-sm {
  font-size: 14px;
}
@mixin font-size-default {
  font-size: 18px;
}
@mixin font-size {
  font-size: 16px;
}
@mixin font-size($var) {
  font-size: $var;
}
@mixin font-size($property, $value) {
  #{$property}: $value;
}
@mixin font-size($var) {
  font-size: $var;
}
@mixin font-size {
  color: blue;
}

.b {
  @mixin font-size {
    color: red;
  }
  @include font-size;
}

The following patterns are not considered violations:

@mixin font-size-default {
  font-size: 16px;
}
@mixin font-size-lg {
  font-size: 18px;
}