Bug 1881238 - Add logs to SettingsSubMenuHttpsOnlyModeRobot
[gecko.git] / mobile / android / android-components / android-lint.gradle
bloba7d1ab8e726e3e64dcadc54f53258164c28e4d02
1 android {
2     lint {
3         warningsAsErrors true
4         abortOnError (project.name != "support-test")
6                 // With our L10N process its totally possible to have missing or (temporarily) extra translations.
7         disable 'MissingTranslation',
8                 'ExtraTranslation',
9                 // We do not want to enforce this as a generic rule for all languages (see #6117, #6056, #6118)
10                 'TypographyEllipsis',
11                 // https://github.com/mozilla-mobile/android-components/issues/10641
12                 'UnspecifiedImmutableFlag',
13                 // https://github.com/mozilla-mobile/android-components/issues/10643
14                 'UnusedResources',
15                 // "We do not impose rules on locales"
16                 // https://github.com/mozilla-mobile/android-components/pull/11069
17                 'TypographyDashes'
18     }