aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2022-06-29 13:27:18 -0700
committerCole Faust <colefaust@google.com>2022-06-29 13:27:18 -0700
commit4db9af30bc0ba54f12d4031eeabc40e8b7bf6219 (patch)
treeeb8c56dd7dc4e7045cf319744ef45e2716c502a7
parente04a0e253369e3218c196998710c5e1a27f05407 (diff)
downloadtagsoup-4db9af30bc0ba54f12d4031eeabc40e8b7bf6219.tar.gz
Downgrade SuspiciousIndentation lint to a warning
Bug: 236431222 Test: Presubmits Change-Id: Ia544b82a063a385fd39b543cfb28f439715a56bc
-rw-r--r--Android.bp7
1 files changed, 5 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index 82550dd..c769704 100644
--- a/Android.bp
+++ b/Android.bp
@@ -49,6 +49,9 @@ java_library_static {
sdk_version: "core_current",
srcs: ["src/**/*.java"],
errorprone: {
- javacflags: ["-Xep:UnicodeInCode:WARN"]
- }
+ javacflags: ["-Xep:UnicodeInCode:WARN"],
+ },
+ lint: {
+ warning_checks: ["SuspiciousIndentation"],
+ },
}