chore(lint): enable wastedassign (#10103)
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled

This commit is contained in:
Vikrant Gupta
2026-01-26 20:40:49 +05:30
committed by GitHub
parent dd0738ac70
commit f2f3a7b24a
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ linters:
- misspell - misspell
- nilnil - nilnil
- sloglint - sloglint
- wastedassign
- unparam - unparam
- unused - unused
settings: settings:

View File

@@ -279,7 +279,7 @@ func (c *conditionBuilder) buildSpanScopeCondition(key *telemetrytypes.Telemetry
return "", errors.NewInvalidInputf(errors.CodeInvalidInput, "span scope field %s only supports '=' operator", key.Name) return "", errors.NewInvalidInputf(errors.CodeInvalidInput, "span scope field %s only supports '=' operator", key.Name)
} }
isTrue := false var isTrue bool
switch v := value.(type) { switch v := value.(type) {
case bool: case bool:
isTrue = v isTrue = v