forked from cgeo/cgeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lint.xml
56 lines (42 loc) · 2.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="AppCompatResource" severity="ignore" />
<!-- we cannot use App Indexing with the GC website -->
<issue id="AppLinkUrlError" severity="ignore" />
<issue id="ContentDescription" severity="ignore" />
<!-- false positives for return values of RxJava subscribe() calls -->
<issue id="CheckResult" severity="ignore" />
<!-- avoid outdated lint warnings typically from external libraries -->
<issue id="ObsoleteLintCustomCheck" severity="ignore" />
<issue id="DuplicateIds" severity="error" />
<issue id="DuplicateIncludedIds" severity="error" />
<issue id="ExportedContentProvider" severity="ignore" />
<!-- we cannot use App Indexing with the GC website -->
<issue id="GoogleAppIndexingWarning" severity="ignore" />
<issue id="IconDensities" severity="ignore" />
<!-- unfinished localizations are okay since we always have English as fallback -->
<issue id="MissingTranslation" severity="ignore" />
<!-- old translation will be deleted by the next crowdin import -->
<issue id="ExtraTranslation" severity="ignore" />
<!-- treat non use of ellipsis character as error to avoid them on incoming translations -->
<issue id="TypographyEllipsis" severity="error" />
<issue id="Registered" severity="ignore" />
<issue id="RtlHardcoded" severity="ignore" />
<issue id="RtlSymmetry" severity="ignore" />
<!-- all false positives in coordinate input -->
<issue id="TypographyDashes" severity="ignore" />
<!-- many false positives due to our many supported languages -->
<issue id="Typos" severity="ignore" />
<issue id="UnusedAttribute" severity="ignore" />
<!-- let translators create more plural strings than needed -->
<issue id="UnusedQuantity" severity="ignore" />
<!-- resources loaded by dynamic name lookup -->
<issue id="UnusedResources">
<ignore path="res/*/cgeo_logo.png" />
<ignore path="res/*/cgeo_sendto.png" />
<ignore path="res/drawable-mdpi/attribute_maintenance.png" />
<ignore path="res/*/ic_launcher_round.xml" />
<ignore path="res/values/vpi__colors.xml" />
<ignore path="res/values-*/strings.xml" />
</issue>
</lint>