Skip to content

Commit 37e5c7e

Browse files
Merge pull request #11 from Jeffrey-Zutt/fix/lint-issues
fix: lint issues
2 parents 5b5aaf6 + c4b98fc commit 37e5c7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,19 @@ func (c *ProjectConfig) extendConfig(o *ProjectConfig) *ProjectConfig {
113113
cfg.GitRepository = c.GitRepository
114114
}
115115

116-
if c.ProtectionBypassForAutomation != true {
116+
if !c.ProtectionBypassForAutomation {
117117
cfg.ProtectionBypassForAutomation = c.ProtectionBypassForAutomation
118118
}
119119

120-
if c.VercelAuthentication.ProtectProduction != true {
120+
if !c.VercelAuthentication.ProtectProduction {
121121
cfg.VercelAuthentication.ProtectProduction = c.VercelAuthentication.ProtectProduction
122122
}
123123

124124
if c.PasswordProtection.Password != "" {
125125
cfg.PasswordProtection.Password = c.PasswordProtection.Password
126126
}
127127

128-
if c.PasswordProtection.ProtectProduction != true {
128+
if !c.PasswordProtection.ProtectProduction {
129129
cfg.PasswordProtection.ProtectProduction = c.PasswordProtection.ProtectProduction
130130
}
131131

0 commit comments

Comments
 (0)