Rule ID: c:S868
Rule name: # Operands of “&&” and “||” should be primary (C) or postfix (C++) expressions
Is it possible to add configuration to this rule, which parts of this rule are valid and which are not?
It is great rule for operands like && and ||, but it brings unnecessary clutter to the code with rule for ! (second example):
if (x || y && z); // Noncompliant
if (x && !y); // Noncompliant
So I propose if you can add change option to this rule to be able to select which are active and which are not.