I’m trying to configure clang-format to work with my team’s style guide.
We like spaces in parens like this:
( ( a == 1) || ( b == 2) )
easy: SpacesInParentheses: true
but we want no spaces when its a boxed expression like so:
@(2)
is there any way to configure clang-format to differentiate these two types of parentesized expressions?