Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 718 Bytes

at-function-pattern.md

File metadata and controls

37 lines (23 loc) · 718 Bytes

Pattern: Unexpected @function name

Issue: -

Description

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

@function grid-width($n) {
/**       ↑
 * 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:

@function boo-bar ($n) {

The following patterns are not considered warnings:

@function foo-bar ($n){

Further Reading