You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
errorproneArgs.add("-XepOpt:Refaster:NamePattern=^(?!.*Rules\\$).*") // currently failing Refaster; might consider whitelist.
32
33
disable(
33
-
34
-
// This check is opinionated wrt. which method names it considers unsuitable for import which includes
35
-
// a few of our own methods in `ReflectionUtils` etc.
36
-
"BadImport",
37
-
38
-
// The findings of this check are subjective because a named constant can be more readable in many cases
39
-
"UnnecessaryLambda",
40
-
41
-
// Resolving findings for these checks requires ErrorProne's annotations which we don't want to use
42
-
"AnnotateFormatMethod",
34
+
"AnnotateFormatMethod", // We don`t want to use ErrorProne`s annotations.
35
+
"BadImport", // This check is opinionated wrt. which method names it considers unsuitable for import which includes a few of our own methods in `ReflectionUtils` etc.
43
36
"DoNotCallSuggester",
44
-
"InlineMeSuggester",
45
37
"ImmutableEnumChecker",
46
-
47
-
// Resolving findings for this check requires using Guava which we don't want to use
48
-
"StringSplitter",
49
-
50
-
// Produces a lot of findings that we consider to be false positives, for example for package-private
51
-
// classes and methods
52
-
"MissingSummary",
38
+
"InlineMeSuggester",
39
+
"MissingSummary", // Produces a lot of findings that we consider to be false positives, for example for package-private classes and methods.
40
+
"StringSplitter", // We don`t want to use Guava.
41
+
"UnnecessaryLambda", // The findings of this check are subjective because a named constant can be more readable in many cases.
0 commit comments