Lombok SonarQube Config
To skip code which is generated by Lombok in the SonarQube code checks, create a file “lombok.config” in your Java/Kotlin maven project, with these two lines in it:
lombok.anyConstructor.addConstructorProperties=true
lombok.addLombokGeneratedAnnotation=true
Code language: Properties (properties)
The addLombokGeneratedAnnotation setting does the trick…