Skip to content

Commit

Permalink
chore: Exclude node_module Folder from Detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Nov 3, 2023
1 parent 654f171 commit 4222608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/detekt.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tasks.withType<Detekt>().configureEach {
parallel = true
setSource(projectDir)
include("**/*.kt", "**/*.kts")
exclude("**/resources/**", "**/build/**")
exclude("**/resources/**", "**/build/**", "**/node_modules/**")
config.setFrom(project.file("$rootDir/config/detekt/config.yml"))
baseline.set(baselineFile)

Expand Down

0 comments on commit 4222608

Please sign in to comment.