Skip to content

Commit

Permalink
Linter: tagalign
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiss, Tibor committed Feb 28, 2024
1 parent 2147683 commit 1fbe8f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ linters:
- unconvert
- varnamelen
- wrapcheck
- tagalign
- gomoddirectives
- testifylint
- containedctx
Expand Down
6 changes: 3 additions & 3 deletions pkg/env/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

// Config represents the environment config for the NATS Manager.
type Config struct {
LogLevel string `envconfig:"LOG_LEVEL" required:"true"`
NATSChartDir string `envconfig:"NATS_CHART_DIR" required:"true"`
NATSCRName string `envconfig:"NATS_CR_NAME" required:"true"`
LogLevel string `envconfig:"LOG_LEVEL" required:"true"`
NATSChartDir string `envconfig:"NATS_CHART_DIR" required:"true"`
NATSCRName string `envconfig:"NATS_CR_NAME" required:"true"`
NATSCRNamespace string `envconfig:"NATS_CR_NAMESPACE" required:"true"`
}

Expand Down

0 comments on commit 1fbe8f2

Please sign in to comment.