1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 15:25:31 +00:00
notes/node_modules/stylelint-scss/src/rules/at-mixin-no-argumentless-call-parentheses
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-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 {