**Version Used**: Compiler version: '5.0.0-2.25505.1 (c8471606)'. Language version: 14.0. **Steps to Reproduce**: Create an `.editorconfig` with the following configuration ``` [*.cs] dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion dotnet_style_parentheses_in_other_binary_operators = always_for_clarity dotnet_style_parentheses_in_other_operators = never_if_unnecessary dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity ``` ``` int a = 10; _ = (a > -1 && a < 100) || (a > 0 && a < 1); ``` <img width="1072" height="390" alt="Image" src="https://github.com/user-attachments/assets/679d2a79-1ad1-4a29-bbc0-60ad426c366f" /> **Diagnostic Id**: IDE0078 **Expected Behavior**: ``` _ = a is (> -1 and < 100) or (> 0 and < 1); ``` **Actual Behavior**: ```c# _ = a is > (-1) and < 100 or > 0 and < 1; ```