-
Notifications
You must be signed in to change notification settings - Fork 0
/
lint.xml
36 lines (30 loc) · 1.32 KB
/
lint.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!--
Lint configuration for the framework-lint tool (go/fwlint). See
http://tools.android.com/tips/lint for full docs on the lint tool.
-->
<!-- min-sdk doesn't apply to platform apps. -->
<issue id="UsesMinSdkAttributes" severity="ignore" />
<!-- Protected permissions don't apply to system apps. -->
<issue id="ProtectedPermissions" severity="ignore" />
<!-- Other recommended suppressions copied from go/fwlint. -->
<issue id="Assert" severity="ignore" />
<issue id="ClickableViewAccessibility" severity="ignore" />
<issue id="GoogleAppIndexingWarning" severity="ignore" />
<issue id="MissingPermission" severity="ignore" />
<issue id="ParcelClassLoader" severity="ignore" />
<issue id="ParcelCreator" severity="ignore" />
<issue id="Registered" severity="ignore" />
<issue id="RtlHardcoded" severity="ignore" />
<issue id="ShiftFlags" severity="ignore" />
<issue id="SuspiciousImport" severity="ignore" />
<!-- Don't lint automatically translated strings. -->
<issue id="all">
<ignore path="res/values-*/strings.xml" />
</issue>
<!-- Don't warn about missing translations. -->
<issue id="MissingTranslation">
<ignore path="res/values/strings.xml" />
</issue>
</lint>