]> source.dussan.org Git - jgit.git/commitdiff
tools/BUILD: Sort errorprone rules alphabetically 28/204528/1
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 16 Sep 2023 09:28:01 +0000 (11:28 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 22 Sep 2023 15:04:19 +0000 (17:04 +0200)
Change-Id: I006940eb8a7710d5b8ea66c6f805f0dd08e62a31

tools/BUILD

index dd081d91781c7cc5b69a611204deed62780d98e4..3d9daae48aff00ac03a03378d837cafade10144f 100644 (file)
@@ -34,10 +34,6 @@ java_package_configuration(
     name = "error_prone",
     javacopts = [
         "-XepDisableWarningsInGeneratedCode",
-        "-Xep:MissingCasesInEnumSwitch:ERROR",
-        "-Xep:ReferenceEquality:WARN",
-        "-Xep:StringEquality:WARN",
-        "-Xep:WildcardImport:ERROR",
         "-Xep:AmbiguousMethodReference:ERROR",
         "-Xep:BadAnnotationImplementation:ERROR",
         "-Xep:BadComparable:WARN",
@@ -66,6 +62,7 @@ java_package_configuration(
         "-Xep:JUnit3FloatingPointComparisonWithoutDelta:ERROR",
         "-Xep:JUnitAmbiguousTestClass:ERROR",
         "-Xep:LiteralClassName:ERROR",
+        "-Xep:MissingCasesInEnumSwitch:ERROR",
         "-Xep:MissingFail:ERROR",
         "-Xep:MissingOverride:ERROR",
         "-Xep:MutableConstantField:WARN",
@@ -78,20 +75,23 @@ java_package_configuration(
         "-Xep:OperatorPrecedence:ERROR",
         "-Xep:OverridesGuiceInjectableMethod:ERROR",
         "-Xep:PreconditionsInvalidPlaceholder:ERROR",
-        "-Xep:ProtoFieldPreconditionsCheckNotNull:ERROR",
         "-Xep:ProtocolBufferOrdinal:ERROR",
+        "-Xep:ProtoFieldPreconditionsCheckNotNull:ERROR",
+        "-Xep:ReferenceEquality:WARN",
         "-Xep:RequiredModifiers:ERROR",
         "-Xep:ShortCircuitBoolean:ERROR",
         "-Xep:SimpleDateFormatConstant:ERROR",
         "-Xep:StaticGuardedByInstance:ERROR",
+        "-Xep:StringEquality:WARN",
         "-Xep:SynchronizeOnNonFinalField:ERROR",
         "-Xep:TruthConstantAsserts:ERROR",
         "-Xep:TypeParameterShadowing:ERROR",
         "-Xep:TypeParameterUnusedInFormals:WARN",
-        "-Xep:URLEqualsHashCode:ERROR",
-        "-Xep:UnusedException:WARN",
         "-Xep:UnsynchronizedOverridesSynchronized:ERROR",
+        "-Xep:UnusedException:WARN",
+        "-Xep:URLEqualsHashCode:ERROR",
         "-Xep:WaitNotInLoop:ERROR",
+        "-Xep:WildcardImport:ERROR",
     ],
     packages = ["error_prone_packages"],
 )