fix(build): disable ObsoleteLintCustomCheck lint

This commit is contained in:
Harsh Shandilya 2024-01-25 01:08:03 +05:30
parent 2e1b9575e8
commit e332626857

View file

@ -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"