1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-11 14:30:42 +00:00
notes/node_modules/stylelint-scss/src/rules/at-mixin-no-argumentless-call-parentheses/README.md
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

507 B

at-mixin-no-argumentless-call-parentheses

Deprecated. Use at-mixin-argumentless-call-parentheses instead.

Disallow parentheses in argumentless @mixin calls.

@include mixin-name() {
/**                ↑
 *  Such mixin calls */

The following patterns are considered warnings:

@include mixin-name() {

The following patterns are not considered warnings:

@include mixin-name {