Problem
When working with Lombok, SeaLights reports quality risks on its generated code
Solution
By default, SeaLights ignores Lombok code if Lombok annotations are added to the generated code.
In order to get Lombok to generate these annotations, the flag lombok.addLombokGeneratedAnnotation should be set to true.
This can be done bu updating the lombok.config file with the following entry:
lombok.config
lombok.addLombokGeneratedAnnotation = true
See https://projectlombok.org/features/configuration for more details
Related articles