File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ tasks {
5454
5555 // Don't support Android without desugar
5656 disable(" AndroidJdkLibsChecker" )
57- disable(" Java7ApiChecker" )
5857 disable(" StaticOrDefaultInterfaceMethod" )
5958
6059 // needed temporarily while hosting azure-monitor-opentelemetry-exporter in this repo
@@ -70,6 +69,16 @@ tasks {
7069 // cognitive load is dubious.
7170 disable(" YodaCondition" )
7271
72+ // New checks in ErrorProne 2.37.0 that we want to disable
73+ disable(" TimeInStaticInitializer" )
74+
75+ // New checks in ErrorProne 2.38.0 that we want to disable
76+ disable(" AddNullMarkedToPackageInfo" )
77+ disable(" IntLiteralCast" )
78+
79+ // Other new checks that cause warnings in our codebase
80+ disable(" EnumOrdinal" )
81+
7382 if (name.contains(" Jmh" )) {
7483 disable(" MemberName" )
7584 }
You can’t perform that action at this time.
0 commit comments