Skip to content

Commit

Permalink
Enable plugin by default and use the default config (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbosch authored Jun 4, 2022
1 parent 59dafc7 commit 092b859
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import com.intellij.util.xmlb.annotations.Tag
class DetektConfigStorage : PersistentStateComponent<DetektConfigStorage> {

@Tag
var enableDetekt: Boolean = false
var enableDetekt: Boolean = true

@Tag
var enableFormatting: Boolean = false

@Tag
var buildUponDefaultConfig: Boolean = false
var buildUponDefaultConfig: Boolean = true

@Tag
var enableAllRules: Boolean = false
Expand Down

0 comments on commit 092b859

Please sign in to comment.