This option controls whether using the 'is null' pattern should be preferred over reference equality checks with null.
if (obj is null) { }
if ((object)obj == null) { }