Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 699 Bytes

at-mixin-pattern.md

File metadata and controls

37 lines (23 loc) · 699 Bytes

Pattern: Unexpected @mixin name

Issue: -

Description

Specify a pattern for Sass/SCSS-like mixin names.

@mixin complex-object ($items: 10) {
/**    ↑
 * The pattern of this */

Examples

regex or string

A string will be translated into a RegExp like so new RegExp(yourString) — so be sure to escape properly.

E.g. /foo-.+/

The following patterns are considered warnings:

@mixin boo-bar {

The following patterns are not considered warnings:

@mixin foo-bar {

Further Reading