From bdd2b4584076b718c6d8792cf7078881a05d072c Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Thu, 25 Jun 2026 17:18:35 -0400 Subject: [PATCH] fix(lint): add lint baseline configuration Signed-off-by: Brandon McAnsh --- apps/flipcash/app/build.gradle.kts | 1 + apps/flipcash/app/lint-baseline.xml | 380 ++++++++++++++++++++++++++++ fastlane/Fastfile | 2 +- 3 files changed, 382 insertions(+), 1 deletion(-) create mode 100644 apps/flipcash/app/lint-baseline.xml diff --git a/apps/flipcash/app/build.gradle.kts b/apps/flipcash/app/build.gradle.kts index a75441b46..9cb72f285 100644 --- a/apps/flipcash/app/build.gradle.kts +++ b/apps/flipcash/app/build.gradle.kts @@ -97,6 +97,7 @@ android { lint { checkReleaseBuilds = false + baseline = file("lint-baseline.xml") } compileOptions { diff --git a/apps/flipcash/app/lint-baseline.xml b/apps/flipcash/app/lint-baseline.xml new file mode 100644 index 000000000..1f61656eb --- /dev/null +++ b/apps/flipcash/app/lint-baseline.xml @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c56197299..0631e879c 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -19,7 +19,7 @@ platform :android do desc "Runs all the tests for Flipcash" lane :flipcash_tests do gradle( - task: "generateEmojiList flipcashTestDebug lintDebug", + task: "generateEmojiList flipcashTestDebug :apps:flipcash:app:lintDebug", properties: { "skipCoverage" => ENV.fetch("SKIP_COVERAGE", "false") }