Disallow parentheses in conditional @ rules (if, elsif, while)
@if (true) {}
/** ↑ ↑
* Get rid of parentheses like this. */
The --fix
option on the command line can automatically fix all of the problems reported by this rule.
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