[PM-13908] Disable ExtraTranslation lint warning (#4176)

This commit is contained in:
Patrick Honkonen 2024-10-28 13:47:27 -04:00 committed by ifernandezdiaz
parent d0cac441c4
commit 14a11680b1

View file

@ -135,7 +135,10 @@ android {
unitTests.isReturnDefaultValues = true
}
lint {
disable.add("MissingTranslation")
disable += listOf(
"MissingTranslation",
"ExtraTranslation",
)
}
}