mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-09-13 21:33:32 -06:00
Initial commit
This commit is contained in:
29
node_modules/stylelint-scss/src/rules/at-mixin-pattern/README.md
generated
vendored
Normal file
29
node_modules/stylelint-scss/src/rules/at-mixin-pattern/README.md
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# at-mixin-pattern
|
||||
|
||||
Specify a pattern for Sass/SCSS-like mixin names.
|
||||
|
||||
```scss
|
||||
@mixin complex-object ($items: 10) {
|
||||
/** ↑
|
||||
* 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:
|
||||
|
||||
```scss
|
||||
@mixin boo-bar {
|
||||
```
|
||||
|
||||
The following patterns are *not* considered warnings:
|
||||
|
||||
```scss
|
||||
@mixin foo-bar {
|
||||
```
|
Reference in New Issue
Block a user