You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So this is a bit of a nitpick, but I strongly prefer ternary expressions that look like cond? result1 : result2 instead of cond ? result1 : result2.
Looking at the tests, it seems like converting the former into the latter is unconfigurable and intentional behavior - can this be a configuration option instead?
The text was updated successfully, but these errors were encountered:
quarc2
changed the title
Do not add space after "?" in conditional expression
Make adding space after "?" in conditional expression configurable
Nov 26, 2024
So this is a bit of a nitpick, but I strongly prefer ternary expressions that look like
cond? result1 : result2
instead ofcond ? result1 : result2
.Looking at the tests, it seems like converting the former into the latter is unconfigurable and intentional behavior - can this be a configuration option instead?
The text was updated successfully, but these errors were encountered: