I agree that delombok is useful. However, I don't think that it is
very useful to understand Lombok, because:
1. You can currently use another ways, e.g. some java decompilers.
2. If something works now, it can be a bug. I was not sure about this
feature. I thought that further implementation can break code that
uses this behavior.
Note that @OverrideLombok (+warnings when this annotation is missing)
can avoid annoying troubles when some generated code is unexpectedly
overriden by a written or generated code. Unexpected collisions with
another annotations can be very annoying.
I don't think that overriding generated methods is common for newbies.
I also think that simple warning ("If you want to avoid generating
this method by Lombok, you should use @OverrideLombok.") solves all
important troubles about @OverrideLombok.