-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlombok.config
75 lines (53 loc) · 2.68 KB
/
lombok.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# https://projectlombok.org/features/configuration
#
## Tell the configuration system it should stop looking for other configuration files (default: false).
config.stopBubbling = true
## Generate getters and setters using only the field name (no get/set prefix) (default: false).
lombok.accessors.fluent = true
## Copy these annotations to getters, setters, withers, builder-setters, etc.
## (source: https://github.com/tlinkowski/basic-annotations)
lombok.copyableAnnotations += kotlin.annotations.jvm.ReadOnly
lombok.copyableAnnotations += kotlin.annotations.jvm.Mutable
lombok.copyableAnnotations += pl.tlinkowski.annotation.basic.NullOr
## Generate @lombok.Generated on all generated code (default: false).
lombok.addLombokGeneratedAnnotation = true
## Generate a private no-args constructor for @Data and @Value (default: true).
# lombok.noArgsConstructor.extraPrivate = [false | true]
## When generating equals and hashCode for classes that extend something (other than Object), either automatically take
## into account superclass implementation (call), or don't (skip), or warn and don't (warn). (default = warn).
# lombok.equalsAndHashCode.callSuper = [CALL | SKIP | WARN]
## When generating toString for classes that extend something (other than Object), either automatically take
## into account superclass implementation (call), or don't (skip), or warn and don't (warn). (default = warn).
# lombok.toString.callSuper = [CALL | SKIP | WARN]
## Include the field names in the generated toString method (default = true).
# lombok.toString.includeFieldNames = [false | true]
#
# FLAG USAGE
#
## Emit a warning or error if @Cleanup is used.
lombok.cleanup.flagUsage = ERROR
## Emit a warning or error if @Delegate is used.
lombok.delegate.flagUsage = ERROR
## Emit a warning or error if @ExtensionMethod is used.
lombok.extensionMethod.flagUsage = ERROR
## Emit a warning or error if @FieldDefaults is used.
lombok.fieldDefaults.flagUsage = ERROR
## Emit a warning or error if @Helper is used.
lombok.helper.flagUsage = ERROR
## Emit a warning or error if @CommonsLog is used.
lombok.log.apacheCommons.flagUsage = ERROR
## Emit a warning or error if @Flogger is used.
lombok.log.flogger.flagUsage = ERROR
## Emit a warning or error if @Log is used.
lombok.log.javaUtilLogging.flagUsage = ERROR
## Emit a warning or error if @JBossLog is used.
lombok.log.jbosslog.flagUsage = ERROR
## Emit a warning or error if @Log4j is used.
lombok.log.log4j.flagUsage = ERROR
## Emit a warning or error if @Log4j2 is used.
lombok.log.log4j2.flagUsage = ERROR
## Emit a warning or error if @Synchronized is used.
lombok.synchronized.flagUsage = ERROR
## Emit a warning or error if 'var' is used.
lombok.var.flagUsage = ERROR