1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 18:55:28 +00:00
notes/node_modules/stylelint-scss/src/rules/at-function-pattern
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
README.md Initial commit 2017-03-09 13:16:08 -05:00

at-function-pattern

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

@function grid-width($n) {
/**       ↑
 * The pattern of this */

Options

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){