Pattern: Unexpected ()
used to surround @
-rule
Issue: -
Disallows parentheses in conditional @
rules (if
, elsif
, while
)
@if (true) {}
/** ↑ ↑
* Get rid of parentheses like this. */
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