-
-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lint: ignore some expected or not useful warnings.
- Loading branch information
1 parent
db202aa
commit d2a27a5
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<lint> | ||
<issue id="ValidFragment" severity="ignore" /> | ||
<!-- Lint (incorrectly?) requires many quantity for French, since Android Plugin 7.1.0 --> | ||
<issue id="MissingQuantity"> | ||
<ignore path="src/main/res/values-fr/strings.xml" /> | ||
</issue> | ||
<!-- Let Crowdin take care of that --> | ||
<issue id="MissingQuantity" severity="ignore" /> | ||
<!-- Shipping (somewhat) incomplete translations on purpose --> | ||
<issue id="MissingTranslation" severity="ignore" /> | ||
<!-- Leaving that to translators and feedback --> | ||
<issue id="Typos" severity="ignore" /> | ||
<!-- Mostly due to adding selectableItemBackground --> | ||
<issue id="Overdraw" severity="ignore" /> | ||
<!-- Not supplying drawable-hdpi, drawable-mdpi PNGs: only used in notifications. --> | ||
<issue id="IconMissingDensityFolder" severity="ignore" /> | ||
<!-- Using Gradle versions plugin and in-IDE warnings instead --> | ||
<issue id="GradleDependency" severity="ignore" /> | ||
<!-- Google HTTP client has SslUtils.trustAllSSLContext which is not used by SeriesGuide --> | ||
<issue id="TrustAllX509TrustManager"> | ||
<ignore regexp="google-http-client"/> | ||
</issue> | ||
</lint> |