This option controls whether the null-coalescing operator should be preferred over explicit null-check ternary expressions.
var value = obj ?? other;
var value = obj != null ? obj : other;