Skip to content

Commit

Permalink
ANDROID-11179 excluding files beneath .gradle, build & tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
jmanriquehiberus committed Sep 19, 2024
1 parent fd59062 commit 6baac3a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build-tools/detekt.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ detekt {
buildUponDefaultConfig = true
config = files("$projectDir/build-tools/detekt/detekt.yml")
input = files("$projectDir")

source.from(fileTree(rootProject.projectDir) {
exclude("**/.gradle/")
exclude("**/build/")
exclude("**/tmp/**")
})
}

0 comments on commit 6baac3a

Please sign in to comment.