diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-01 00:55:19 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-01 00:55:19 +0530 |
commit | 1b0d16a60449ba3146b52774778290951c243f1d (patch) | |
tree | 2a7a9cba28d25e826a6f8f9e83fa32ac2cd3ee4b /build-logic | |
parent | 5e711ad8ae4b46478c517675f775b775bf78025a (diff) |
fix(build): disable `TrulyRandom` lint
Diffstat (limited to 'build-logic')
-rw-r--r-- | build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt | 2 |
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" |