fix(build): disable slack-lint DeprecatedCall

This commit is contained in:
Harsh Shandilya 2023-10-27 12:04:51 +05:30
parent 3663ca1ec1
commit 6f4c1a0fbd
No known key found for this signature in database

View file

@ -31,6 +31,8 @@ object LintConfig {
if (!isJVM) { if (!isJVM) {
enable += "ComposeM2Api" enable += "ComposeM2Api"
error += "ComposeM2Api" error += "ComposeM2Api"
// False-positives in the TestContainers library
disable += "DeprecatedCall"
} }
baseline = project.file("lint-baseline.xml") baseline = project.file("lint-baseline.xml")
// This is extremely annoying // This is extremely annoying