49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright 2019 Google LLC
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ https://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<lint>
|
|
<issue id="InvalidPackage" severity="ignore" />
|
|
|
|
<!-- Version changes are beyond our control, so don't warn. The IDE will still mark these. -->
|
|
<issue id="GradleDependency" severity="ignore" />
|
|
|
|
<!-- Timber needs to update its Lint check -->
|
|
<issue id="ObsoleteLintCustomCheck" severity="ignore" />
|
|
|
|
<!-- Translations are added incrementally -->
|
|
<issue id="MissingTranslation" severity="ignore" />
|
|
|
|
<!-- We leave these up to translators -->
|
|
<issue id="TypographyDashes" severity="ignore" />
|
|
<issue id="Typos" severity="ignore" />
|
|
|
|
<!-- We configure Lint check generated sources to eliminate UnusedResources false positives for
|
|
resources used in DataBinding layouts. However, the generated files produce other Lint
|
|
errors that we can ignore.
|
|
-->
|
|
<issue id="RestrictedApi">
|
|
<ignore path="build" />
|
|
</issue>
|
|
|
|
<issue id="UnusedResources">
|
|
<!-- Some dependencies & gradle plugins generate resources that we don't use -->
|
|
<ignore path="build" />
|
|
<!-- Map markers are referenced by name at runtime -->
|
|
<ignore regexp="res/drawable/map_marker_.+\.xml" />
|
|
</issue>
|
|
</lint>
|