We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568223a commit db2ef08Copy full SHA for db2ef08
app/build.gradle.kts
@@ -145,7 +145,6 @@ android {
145
lint {
146
abortOnError = false
147
checkReleaseBuilds = false
148
- disable.add("MissingTranslation")
149
}
150
151
buildFeatures {
app/lint.xml
@@ -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