diff options
-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" |