From aaf1f0bf7b9ac8bb306e83ca25c97c69a45cd1f8 Mon Sep 17 00:00:00 2001 From: chanhengseang Date: Mon, 26 May 2025 12:41:53 -0700 Subject: [PATCH] add lombok config --- lombok.config | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lombok.config diff --git a/lombok.config b/lombok.config new file mode 100644 index 00000000..31be0740 --- /dev/null +++ b/lombok.config @@ -0,0 +1,12 @@ +config.stopBubbling = true +lombok.addLombokGeneratedAnnotation = true +lombok.anyConstructor.addConstructorProperties = true +lombok.equalsAndHashCode.callSuper = call +lombok.accessors.chain = true +lombok.fieldDefaults.defaultPrivate = true +lombok.extern.findbugs.addSuppressFBWarnings = false +# Ensure getters and setters are properly generated +lombok.getter.noIsPrefix = false +lombok.setter.flagUsage = allow +# Enable all field-level annotations +lombok.data.flagUsage = allow