mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-25 04:22:22 -06:00
at-mixin-argumentless-call-parentheses
Require or disallow parentheses in argumentless @mixin
calls.
@include mixin-name() {
/** ↑
* Such mixin calls */
Options
string
: "always"|"never"
"always"
There must always be parentheses in mixin calls, even if no arguments are passed.
The following patterns are considered warnings:
@include mixin-name;
The following patterns are not considered warnings:
@include mixin-name();
"never"
There must never be parentheses when calling a mixin without arguments.
The following patterns are considered warnings:
@include mixin-name();
The following patterns are not considered warnings:
@include mixin-name;