diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2024-01-25 01:08:03 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2024-01-25 01:08:03 +0530 |
commit | e3326268575d23f721bf55ab1bfd6ea996959bab (patch) | |
tree | 0a9a2003b72f6ca1bfcb3262517dad088a77c8a8 /build-logic | |
parent | 2e1b9575e848ef02f31d02e4ee0736767af9eeff (diff) |
fix(build): disable `ObsoleteLintCustomCheck` 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 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" |