summaryrefslogtreecommitdiffstats
path: root/tools/BUILD
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2023-09-16 11:28:01 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2023-09-22 17:04:19 +0200
commitd65170603f50db4bdafa9e926e56f0b2abab6f6e (patch)
treedfbb7623ded4f317aedf52a88ff5b82615925546 /tools/BUILD
parent136b8953e2d7d5fc1641ebabfb716e2f44146c3e (diff)
downloadjgit-d65170603f50db4bdafa9e926e56f0b2abab6f6e.tar.gz
jgit-d65170603f50db4bdafa9e926e56f0b2abab6f6e.zip
tools/BUILD: Sort errorprone rules alphabetically
Change-Id: I006940eb8a7710d5b8ea66c6f805f0dd08e62a31
Diffstat (limited to 'tools/BUILD')
-rw-r--r--tools/BUILD14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/BUILD b/tools/BUILD
index dd081d9178..3d9daae48a 100644
--- a/tools/BUILD
+++ b/tools/BUILD
@@ -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"],
)