Skip to content

Commit

Permalink
Fix missing enabledByDefault flag in echcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Oct 14, 2024
1 parent 9053991 commit 9e6abf5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions internal/registry/echcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ func init() {
*config.(*echcheck.Config),
)
},
canonicalName: canonicalName,
config: &echcheck.Config{},
inputPolicy: model.InputOptional,
canonicalName: canonicalName,
config: &echcheck.Config{},
enabledByDefault: true,
inputPolicy: model.InputOptional,
}
}
}

0 comments on commit 9e6abf5

Please sign in to comment.