summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/build.gradle
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-21 08:48:33 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-21 08:48:33 +0300
commite69e0071b8803158cb9428a54815e8a6921ab4af (patch)
treee550fd62f1b4a2e96021ee857baa5c0c3f2945b7 /org.fox.ttrss/build.gradle
parent219fd874b5693920f4a78c873d822ac5197f0e25 (diff)
force enable lint with some disabled issues
Diffstat (limited to 'org.fox.ttrss/build.gradle')
-rwxr-xr-xorg.fox.ttrss/build.gradle10
1 files changed, 8 insertions, 2 deletions
diff --git a/org.fox.ttrss/build.gradle b/org.fox.ttrss/build.gradle
index 2402a42d..a8b102ed 100755
--- a/org.fox.ttrss/build.gradle
+++ b/org.fox.ttrss/build.gradle
@@ -32,10 +32,16 @@ android {
}
}
+ applicationVariants.all {
+ def lintTask = tasks["lint"]
+ assembleProvider.get().dependsOn.add(lintTask)
+ }
+
lintOptions {
- abortOnError false
+ abortOnError true
checkReleaseBuilds false
- disable 'MissingTranslation'
+ disable 'MissingTranslation', 'ExtraTranslation', 'MissingQuantity', 'ImpliedQuantity'
+ enable 'SuspiciousIndentation'
}
buildTypes {