forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlint.xml
More file actions
15 lines (15 loc) · 769 Bytes
/
lint.xml
File metadata and controls
15 lines (15 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- AndroidX global lint rules from ../buildSrc/lint.xml -->
<issue id="LintBaseline" severity="ignore">
<ignore regexp=".* filtered out because .* listed in the baseline file.*"/>
</issue>
<!-- Re-enable high-priority checks for tests (and everything else). -->
<issue id="NewApi" severity="fatal" />
<issue id="WrongThread" severity="fatal" />
<issue id="MissingTestSizeAnnotation" severity="fatal" />
<!-- We cannot cause ClassVerificationFailure in embedding apps -->
<issue id="ClassVerificationFailure" severity="fatal" />
<!-- Developers need to call our code from Kotlin code, so nullness is important.-->
<issue id="UnknownNullness" severity="fatal" />
</lint>