at-rule-conditional-no-parentheses

May 25, 2022 · View on GitHub

Disallow parentheses in conditional @ rules (if, elsif, while)

    @if (true) {}
/**     ↑    ↑
 * Get rid of parentheses like this. */

The fix option can automatically fix all of the problems reported by this rule.

Options

true

The following patterns are considered warnings:

@if(true)
@else if(true)
@while(true)

The following patterns are not considered warnings:

@if true
@else if true
@while true