Would be nice to get an attribute to show non serialized fields in inspector.
ODIN and NaughtyAttributes have this option, and it's quite handy for debugging and other specific cases.
Something like:
[ShowNonSerializedField]
private int myInt = 1;
[NonSerialized, ShowNonSerializedField]
public int myInt2 = 10;
Thanks!