Skip to content

Commit

Permalink
Add some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclrchtr committed Nov 15, 2023
1 parent c135e37 commit 4081bf2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,16 @@ kotlin {

detekt {
ignoreFailures = false

// Applies the config files on top of detekt's default config file. `false` by default.
buildUponDefaultConfig = true

// Define the detekt configuration(s) you want to use.
// Defaults to the default detekt configuration.
config.setFrom("$rootDir/detekt.yml")

// Builds the AST in parallel. Rules are always executed in parallel.
// Can lead to speedups in larger projects. `false` by default.
parallel = true
}

Expand Down

0 comments on commit 4081bf2

Please sign in to comment.