We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6d533 commit 4e92977Copy full SHA for 4e92977
conventions/src/main/kotlin/otel.nullaway-conventions.gradle.kts
@@ -18,6 +18,10 @@ nullaway {
18
19
tasks {
20
withType<JavaCompile>().configureEach {
21
+ options.errorprone {
22
+ // workaround for https://github.com/google/error-prone/issues/5387
23
+ check("RequireExplicitNullMarking", CheckSeverity.OFF)
24
+ }
25
options.errorprone.nullaway {
26
if (name.contains("test", ignoreCase = true)) {
27
disable()
@@ -30,4 +34,3 @@ tasks {
30
34
}
31
35
32
36
33
-
0 commit comments