-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathlint.xml
More file actions
40 lines (29 loc) · 1.72 KB
/
Copy pathlint.xml
File metadata and controls
40 lines (29 loc) · 1.72 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Our vectors are generated, so we don't have much control about their length etc -->
<issue id="VectorPath" severity="ignore" />
<issue id="VectorRaster" severity="ignore" />
<!-- Overdraw is mostly a false positive and the performance improvements when avoiding it are minimal these days -->
<issue id="Overdraw" severity="ignore" />
<!-- We don't support any backup in the demo app -->
<issue id="AllowBackup" severity="ignore" />
<!-- We do not support AndroidTV -->
<issue id="MissingLeanbackSupport" severity="ignore" />
<issue id="MissingLeanbackLauncher" severity="ignore" />
<issue id="ImpliedTouchscreenHardware" severity="ignore" />
<!-- Dependency updates are handled by dependabot and we generally don't want to be warned about it in a PR as the changes are unrelated -->
<issue id="GradleDependency" severity="ignore" />
<!-- As our minSdk is below API 30 this is not relevant -->
<issue id="UseCompatTextViewDrawableApis" severity="ignore" />
<!-- We're not accessing videos, so this is not relevant-->
<issue id="MediaCapabilities" severity="ignore" />
<!-- We don't support the monochrome launcher icon -->
<issue id="MonochromeLauncherIcon" severity="ignore" />
<!-- We already have dependabot checks for this and don't want to fail CI when this isn't merged yet -->
<issue id="AndroidGradlePluginVersion" severity="ignore" />
<issue id="UnsafeOptInUsageError">
<option name="opt-in" value="net.skyscanner.backpack.util.InternalBackpackApi" />
</issue>
<!-- Ignore typos for link0, link1 patterns used in text processing -->
<issue id="Typos" severity="ignore" />
</lint>