codeformatter
codeformatter copied to clipboard
Simple gets are moved to the next line when they have an attribute
I haven't verified with a minimal repro, but based on cases where this has been seen it seems like
public bool SimpleProperty
{
[Pure]
get { return false; }
}
will be rewritten as
public bool SimpleProperty
{
[Pure]
get
{ return false; }
}
which is not the desired state for corefx.