fix(build): disable ObsoleteLintCustomCheck lint

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2024-02-29 14:15:01 +05:30
parent af7c54203f
commit fdf891c8eb
2 changed files with 5 additions and 3 deletions

View file

@ -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) {