diff options
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 d6c58a7a..5426711f 100644 --- a/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt +++ b/build-logic/src/main/kotlin/app/passwordstore/gradle/LintConfig.kt @@ -32,6 +32,8 @@ object LintConfig { disable += "UnusedIds" // False-positive, not relevant on the API levels we support disable += "TrulyRandom" + // I can't do anything about this + disable += "ObsoleteLintCustomCheck" if (!isJVM) { // Enable compose-lint-checks' Material 2 detector enable += "ComposeM2Api" |