Skip to content

Commit

Permalink
disabling lint for the pulled in module
Browse files Browse the repository at this point in the history
  • Loading branch information
ouchadam committed Sep 15, 2022
1 parent b91f14a commit 7abcdd4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions library/dialpad/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ android {
jvmTarget = "11"
}
}

afterEvaluate {
tasks.findAll { it.name.startsWith("lint") }.each {
it.enabled = false
}
}

0 comments on commit 7abcdd4

Please sign in to comment.