aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-11-01 00:55:19 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-11-01 00:55:19 +0530
commit1b0d16a60449ba3146b52774778290951c243f1d (patch)
tree2a7a9cba28d25e826a6f8f9e83fa32ac2cd3ee4b
parent5e711ad8ae4b46478c517675f775b775bf78025a (diff)
fix(build): disable `TrulyRandom` lint
-rw-r--r--build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt b/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt
index 361b92cd..1391d592 100644
--- a/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt
+++ b/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt
@@ -28,6 +28,8 @@ object LintConfig {
disable += "TypographyQuotes"
// False-positives abound due to use of ViewBinding
disable += "UnusedIds"
+ // False-positive, not relevant on the API levels we support
+ disable += "TrulyRandom"
if (!isJVM) {
// Enable compose-lint-checks' Material 2 detector
enable += "ComposeM2Api"