update baseline lint to exclude transforms on github
Github builds find dependencies in another folder which was being
skipped by the lint ignore file on AOSP.
This CL patches it but we should still followup to figure out if
we even want lint on dependencies.
Bug: 283812176
Test: cd paging && ./gradlew :paging:integration-tests:testapp:lintDebug
Change-Id: I135c506142dbdd20bebab7b2f45cf213c15de47f
diff --git a/buildSrc/lint.xml b/buildSrc/lint.xml
index f766c40..749708c 100644
--- a/buildSrc/lint.xml
+++ b/buildSrc/lint.xml
@@ -40,8 +40,10 @@
<issue id="WrongThread" severity="fatal" />
<issue id="MissingTestSizeAnnotation" severity="fatal" />
<issue id="IgnoreClassLevelDetector" severity="fatal" />
- <!-- Disable all lint checks on transformed classes by default. -->
+ <!-- Disable all lint checks on transformed classes by default. b/283812176 -->
<issue id="all">
<ignore path="**/.transforms/**" />
+ <!-- playground builds have dependency files in "transformed" instead of ".transforms" -->
+ <ignore path="**/.gradle/**/transforms*/**/transformed/**" />
</issue>
</lint>