This option controls whether parentheses should be used to clarify precedence in expressions using arithmetic binary operators.
var value = a + (b * c);
var value = a + b * c;