GetXAnalyzer.IsNullCheck doesn't recognize is not null.
The first code fragment raises REFL0009:
var property = type.GetProperty(PropertyName);
if (suppressionsProperty is not null)
The second does not:
var property = type.GetProperty(PropertyName);
if (suppressionsProperty != null)