Closed tysongach closed 4 years ago
These rules lint for spaces before Sass @else if, @function, and @mixin parentheses. They will catch things like…
@else if
@function
@mixin
A space between if and the opening parentheses:
if
@else if ($condition) { } // ↑
A space between the function name and the opening parentheses:
@function foo ($arg) { } // ↑
A space between the mixin name and the opening parentheses:
@mixin foo ($arg) { } // ↑
Documentation:
These rules lint for spaces before Sass
@else if
,@function
, and@mixin
parentheses. They will catch things like…A space between
if
and the opening parentheses:A space between the function name and the opening parentheses:
A space between the mixin name and the opening parentheses:
Documentation: