When I create a new Java class with one or more field and attach the @AllArgsConstructor annotation from lombok to it, then i get this message
@AllArgsConstructor
Err
You need to add suppression in your AllArgsConstructors. If you don't want to add a new config file, you can simply do this:
@AllArgsConstructor(suppressConstructorProperties = true)
Disclosure: I'm not a Lombok developer :D