diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-21 08:48:33 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-21 08:48:33 +0300 |
| commit | e69e0071b8803158cb9428a54815e8a6921ab4af (patch) | |
| tree | e550fd62f1b4a2e96021ee857baa5c0c3f2945b7 /org.fox.ttrss/build.gradle | |
| parent | 219fd874b5693920f4a78c873d822ac5197f0e25 (diff) | |
force enable lint with some disabled issues
Diffstat (limited to 'org.fox.ttrss/build.gradle')
| -rwxr-xr-x | org.fox.ttrss/build.gradle | 10 |
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 { |