Skip to content

Commit db2ef08

Browse files
authored
Add lint.xml and add ignores to it (#2300)
It's more expandable later on this way.
1 parent 568223a commit db2ef08

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ android {
145145
lint {
146146
abortOnError = false
147147
checkReleaseBuilds = false
148-
disable.add("MissingTranslation")
149148
}
150149

151150
buildFeatures {

app/lint.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
<!-- ByteOrderMark has errors in values-b+ja/strings.xml, but it's handled by weblate so we don't really care. -->
4+
<issue id="ByteOrderMark" severity="ignore" />
5+
6+
<!-- We don't care about MissingTranslation since it's handled by weblate. -->
7+
<issue id="MissingTranslation" severity="ignore" />
8+
</lint>

0 commit comments

Comments
 (0)