diff --git a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/LintConfig.kt b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/LintConfig.kt index b2d26ec5..06ed582d 100644 --- a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/LintConfig.kt +++ b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/LintConfig.kt @@ -31,14 +31,14 @@ object LintConfig { if (!isJVM) { enable += "ComposeM2Api" error += "ComposeM2Api" - // False-positives in the TestContainers library - disable += "DeprecatedCall" } baseline = project.file("lint-baseline.xml") // This is extremely annoying disable += "AndroidGradlePluginVersion" disable += "GradleDependency" disable += "NewerVersionAvailable" + // Can't do anything about this + disable += "ObsoleteLintCustomCheck" } fun configureRootProject(project: Project) { diff --git a/web/build.gradle.kts b/web/build.gradle.kts index 06f9f503..afdfec22 100644 --- a/web/build.gradle.kts +++ b/web/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright © 2023 Harsh Shandilya. + * Copyright © 2023-2024 Harsh Shandilya. * Use of this source code is governed by an MIT-style * license that can be found in the LICENSE file or at * https://opensource.org/licenses/MIT. @@ -16,6 +16,8 @@ android { buildFeatures.compose = true composeOptions.kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get() kotlin.explicitApi() + // Don't quite care + lint.disable += "DeprecatedCall" } dependencies {