Skip to content

Commit

Permalink
force push to master everyday
Browse files Browse the repository at this point in the history
zricethezav committed Jan 15, 2025
1 parent 0e5f644 commit a211b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
@@ -296,7 +296,7 @@ func (c *Config) extend(extensionConfig Config) {
disabledRuleIDs := map[string]struct{}{}
for _, id := range c.Extend.DisabledRules {
if _, ok := extensionConfig.Rules[id]; !ok {
log.Warn().
logging.Warn().
Str("rule-id", id).
Str("config", configName).
Msg("Disabled rule doesn't exist in extended config.")
@@ -307,7 +307,7 @@ func (c *Config) extend(extensionConfig Config) {
for ruleID, baseRule := range extensionConfig.Rules {
// Skip the rule.
if _, ok := disabledRuleIDs[ruleID]; ok {
log.Debug().
logging.Debug().
Str("rule-id", ruleID).
Str("config", configName).
Msg("Ignoring rule from extended config.")

0 comments on commit a211b16

Please sign in to comment.