Add dedicated lint config and ignore missing translations

Translations are done by volunteers when possible, so no need to make it an error.
Also our translation platform has issues for now that makes it a legit case to be ignored.

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2023-04-19 13:45:18 +05:30
parent f54e1e13ad
commit 1d4333d189
2 changed files with 8 additions and 0 deletions

View File

@@ -90,6 +90,10 @@ android {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
lint {
lintConfig file("lint.xml")
}
}
kapt {

4
app/lint.xml Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="MissingTranslation" severity="ignore" />
</lint>