summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-11-06 11:55:20 +0100
committerByteHamster <info@bytehamster.com>2022-11-06 11:55:23 +0100
commitd61745be86427c2eabad64c81bf9597cb9aa6dd1 (patch)
tree17fb6644cdb60235c952fe3d03de5a87cb1b362f /ui
parente4d4c69519c7854f1852d80a3b47eebe30e6a3d5 (diff)
downloadAntennaPod-d61745be86427c2eabad64c81bf9597cb9aa6dd1.zip
Check Lint recursively from the :app module
instead of checking every module individually. This avoids having to re-state all disabled Lint checks in all parent modules.
Diffstat (limited to 'ui')
-rw-r--r--ui/glide/build.gradle9
-rw-r--r--ui/statistics/build.gradle7
2 files changed, 0 insertions, 16 deletions
diff --git a/ui/glide/build.gradle b/ui/glide/build.gradle
index ff61fc8e1..020a4db8e 100644
--- a/ui/glide/build.gradle
+++ b/ui/glide/build.gradle
@@ -4,15 +4,6 @@ plugins {
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
-android {
- lintOptions {
- disable "InvalidPeriodicWorkRequestInterval", "ObsoleteLintCustomCheck", "DefaultLocale", "UnusedAttribute",
- "ParcelClassLoader", "CheckResult", "TrustAllX509TrustManager",
- "StaticFieldLeak", "IconDensities", "IconDuplicates", "MissingPermission", "AppCompatResource",
- "GradleCompatible", "QueryPermissionsNeeded"
- }
-}
-
dependencies {
implementation project(":model")
implementation project(":core")
diff --git a/ui/statistics/build.gradle b/ui/statistics/build.gradle
index 99c613b75..346fff253 100644
--- a/ui/statistics/build.gradle
+++ b/ui/statistics/build.gradle
@@ -4,13 +4,6 @@ plugins {
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
-android {
- lintOptions {
- disable "InvalidPeriodicWorkRequestInterval", "MissingPermission", "GradleCompatible",
- "QueryPermissionsNeeded", "Overdraw", "SetTextI18n", "RtlHardcoded"
- }
-}
-
dependencies {
implementation project(":core")
implementation project(":event")